drivers: ethernet: qlogic: qlge_dbg.c: Fixed a coding style issue

checkpatch.pl throws error message for the current code. This patch fixes
this coding style issue.

Signed-off-by: Kumar Amit Mehta <gmate.amit@gmail.com>
Acked-by: Jitendra Kalsaria <Jitendra.kalsaria@qlogic.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Kumar Amit Mehta 2012-11-04 19:11:32 +00:00 committed by David S. Miller
parent 54e7e2df3e
commit b82cf962bc
1 changed files with 8 additions and 8 deletions

View File

@ -86,7 +86,7 @@ exit:
} }
/* Read out the SERDES registers */ /* Read out the SERDES registers */
static int ql_read_serdes_reg(struct ql_adapter *qdev, u32 reg, u32 * data) static int ql_read_serdes_reg(struct ql_adapter *qdev, u32 reg, u32 *data)
{ {
int status; int status;
@ -364,7 +364,7 @@ exit:
/* Read the 400 xgmac control/statistics registers /* Read the 400 xgmac control/statistics registers
* skipping unused locations. * skipping unused locations.
*/ */
static int ql_get_xgmac_regs(struct ql_adapter *qdev, u32 * buf, static int ql_get_xgmac_regs(struct ql_adapter *qdev, u32 *buf,
unsigned int other_function) unsigned int other_function)
{ {
int status = 0; int status = 0;
@ -405,7 +405,7 @@ static int ql_get_xgmac_regs(struct ql_adapter *qdev, u32 * buf,
return status; return status;
} }
static int ql_get_ets_regs(struct ql_adapter *qdev, u32 * buf) static int ql_get_ets_regs(struct ql_adapter *qdev, u32 *buf)
{ {
int status = 0; int status = 0;
int i; int i;
@ -423,7 +423,7 @@ static int ql_get_ets_regs(struct ql_adapter *qdev, u32 * buf)
return status; return status;
} }
static void ql_get_intr_states(struct ql_adapter *qdev, u32 * buf) static void ql_get_intr_states(struct ql_adapter *qdev, u32 *buf)
{ {
int i; int i;
@ -434,7 +434,7 @@ static void ql_get_intr_states(struct ql_adapter *qdev, u32 * buf)
} }
} }
static int ql_get_cam_entries(struct ql_adapter *qdev, u32 * buf) static int ql_get_cam_entries(struct ql_adapter *qdev, u32 *buf)
{ {
int i, status; int i, status;
u32 value[3]; u32 value[3];
@ -471,7 +471,7 @@ err:
return status; return status;
} }
static int ql_get_routing_entries(struct ql_adapter *qdev, u32 * buf) static int ql_get_routing_entries(struct ql_adapter *qdev, u32 *buf)
{ {
int status; int status;
u32 value, i; u32 value, i;
@ -496,7 +496,7 @@ err:
} }
/* Read the MPI Processor shadow registers */ /* Read the MPI Processor shadow registers */
static int ql_get_mpi_shadow_regs(struct ql_adapter *qdev, u32 * buf) static int ql_get_mpi_shadow_regs(struct ql_adapter *qdev, u32 *buf)
{ {
u32 i; u32 i;
int status; int status;
@ -515,7 +515,7 @@ end:
} }
/* Read the MPI Processor core registers */ /* Read the MPI Processor core registers */
static int ql_get_mpi_regs(struct ql_adapter *qdev, u32 * buf, static int ql_get_mpi_regs(struct ql_adapter *qdev, u32 *buf,
u32 offset, u32 count) u32 offset, u32 count)
{ {
int i, status = 0; int i, status = 0;