Skip to content

Commit

Permalink
mwifiex: minor changes in debug messages
Browse files Browse the repository at this point in the history
Small letters are used in debug messages to match coding style
at other places.

Signed-off-by: Amitkumar Karwar <akarwar@marvell.com>
Signed-off-by: Cathy Luo <cluo@marvell.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
  • Loading branch information
Amitkumar Karwar authored and Kalle Valo committed Jun 2, 2015
1 parent 38b130e commit 9cc0dbf
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions drivers/net/wireless/mwifiex/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -890,7 +890,7 @@ void mwifiex_dump_drv_info(struct mwifiex_adapter *adapter)
adapter->drv_info_size = 0;
}

mwifiex_dbg(adapter, MSG, "=== DRIVER INFO DUMP START===\n");
mwifiex_dbg(adapter, MSG, "===mwifiex driverinfo dump start===\n");

adapter->drv_info_dump = vzalloc(MWIFIEX_DRV_INFO_SIZE_MAX);

Expand Down Expand Up @@ -958,12 +958,12 @@ void mwifiex_dump_drv_info(struct mwifiex_adapter *adapter)
}

if (adapter->iface_type == MWIFIEX_SDIO) {
p += sprintf(p, "\n=== SDIO register DUMP===\n");
p += sprintf(p, "\n=== SDIO register dump===\n");
if (adapter->if_ops.reg_dump)
p += adapter->if_ops.reg_dump(adapter, p);
}

p += sprintf(p, "\n=== MORE DEBUG INFORMATION\n");
p += sprintf(p, "\n=== more debug information\n");
debug_info = kzalloc(sizeof(*debug_info), GFP_KERNEL);
if (debug_info) {
for (i = 0; i < adapter->priv_num; i++) {
Expand All @@ -978,7 +978,7 @@ void mwifiex_dump_drv_info(struct mwifiex_adapter *adapter)
}

adapter->drv_info_size = p - adapter->drv_info_dump;
mwifiex_dbg(adapter, MSG, "=== DRIVER INFO DUMP END===\n");
mwifiex_dbg(adapter, MSG, "===mwifiex driverinfo dump end===\n");
}
EXPORT_SYMBOL_GPL(mwifiex_dump_drv_info);

Expand Down
4 changes: 2 additions & 2 deletions drivers/net/wireless/mwifiex/sdio.c
Original file line number Diff line number Diff line change
Expand Up @@ -2356,7 +2356,7 @@ mwifiex_sdio_reg_dump(struct mwifiex_adapter *adapter, char *drv_buf)
if (!p)
return 0;

mwifiex_dbg(adapter, MSG, "SDIO register DUMP START\n");
mwifiex_dbg(adapter, MSG, "SDIO register dump start\n");

mwifiex_pm_wakeup_card(adapter);

Expand Down Expand Up @@ -2428,7 +2428,7 @@ mwifiex_sdio_reg_dump(struct mwifiex_adapter *adapter, char *drv_buf)

sdio_release_host(cardp->func);

mwifiex_dbg(adapter, MSG, "SDIO register DUMP END\n");
mwifiex_dbg(adapter, MSG, "SDIO register dump end\n");

return p - drv_buf;
}
Expand Down

0 comments on commit 9cc0dbf

Please sign in to comment.