Commit c5c642c5 authored by Igor Russkikh's avatar Igor Russkikh Committed by David S. Miller

qed: align adjacent indent

Remove extra indent on some of adjacent declarations.
Signed-off-by: default avatarIgor Russkikh <irusskikh@marvell.com>
Signed-off-by: default avatarAlexander Lobakin <alobakin@marvell.com>
Signed-off-by: default avatarMichal Kalderon <michal.kalderon@marvell.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 27fed787
...@@ -852,8 +852,7 @@ struct qed_common_ops { ...@@ -852,8 +852,7 @@ struct qed_common_ops {
void (*remove)(struct qed_dev *cdev); void (*remove)(struct qed_dev *cdev);
int (*set_power_state)(struct qed_dev *cdev, int (*set_power_state)(struct qed_dev *cdev, pci_power_t state);
pci_power_t state);
void (*set_name) (struct qed_dev *cdev, char name[]); void (*set_name) (struct qed_dev *cdev, char name[]);
...@@ -863,6 +862,7 @@ struct qed_common_ops { ...@@ -863,6 +862,7 @@ struct qed_common_ops {
*/ */
void (*update_pf_params)(struct qed_dev *cdev, void (*update_pf_params)(struct qed_dev *cdev,
struct qed_pf_params *params); struct qed_pf_params *params);
int (*slowpath_start)(struct qed_dev *cdev, int (*slowpath_start)(struct qed_dev *cdev,
struct qed_slowpath_params *params); struct qed_slowpath_params *params);
...@@ -871,12 +871,10 @@ struct qed_common_ops { ...@@ -871,12 +871,10 @@ struct qed_common_ops {
/* Requests to use `cnt' interrupts for fastpath. /* Requests to use `cnt' interrupts for fastpath.
* upon success, returns number of interrupts allocated for fastpath. * upon success, returns number of interrupts allocated for fastpath.
*/ */
int (*set_fp_int)(struct qed_dev *cdev, int (*set_fp_int)(struct qed_dev *cdev, u16 cnt);
u16 cnt);
/* Fills `info' with pointers required for utilizing interrupts */ /* Fills `info' with pointers required for utilizing interrupts */
int (*get_fp_int)(struct qed_dev *cdev, int (*get_fp_int)(struct qed_dev *cdev, struct qed_int_info *info);
struct qed_int_info *info);
u32 (*sb_init)(struct qed_dev *cdev, u32 (*sb_init)(struct qed_dev *cdev,
struct qed_sb_info *sb_info, struct qed_sb_info *sb_info,
...@@ -895,16 +893,15 @@ struct qed_common_ops { ...@@ -895,16 +893,15 @@ struct qed_common_ops {
int index, int index,
void (*handler)(void *)); void (*handler)(void *));
void (*simd_handler_clean)(struct qed_dev *cdev, void (*simd_handler_clean)(struct qed_dev *cdev, int index);
int index);
int (*dbg_grc)(struct qed_dev *cdev, int (*dbg_grc)(struct qed_dev *cdev, void *buffer, u32 *num_dumped_bytes);
void *buffer, u32 *num_dumped_bytes);
int (*dbg_grc_size)(struct qed_dev *cdev); int (*dbg_grc_size)(struct qed_dev *cdev);
int (*dbg_all_data) (struct qed_dev *cdev, void *buffer); int (*dbg_all_data)(struct qed_dev *cdev, void *buffer);
int (*dbg_all_data_size) (struct qed_dev *cdev); int (*dbg_all_data_size)(struct qed_dev *cdev);
int (*report_fatal_error)(struct devlink *devlink, int (*report_fatal_error)(struct devlink *devlink,
enum qed_hw_err_type err_type); enum qed_hw_err_type err_type);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment