projects
/
firefly-linux-kernel-4.4.55.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b595a66
)
net: wireless: bcmdhd: Adjust driver/fw/chip info format
author
Dmitry Shmidt
<dimitrysh@google.com>
Fri, 13 Jul 2012 21:38:32 +0000
(14:38 -0700)
committer
Dmitry Shmidt
<dimitrysh@google.com>
Tue, 17 Jul 2012 19:53:04 +0000
(12:53 -0700)
Signed-off-by: Dmitry Shmidt <dimitrysh@google.com>
drivers/net/wireless/bcmdhd/dhd_linux.c
patch
|
blob
|
history
diff --git
a/drivers/net/wireless/bcmdhd/dhd_linux.c
b/drivers/net/wireless/bcmdhd/dhd_linux.c
index f4dd38fc77e27a24375edbf03397b750218ac423..3aede87731924b6954d293965bd8f106fbb1c1ba 100644
(file)
--- a/
drivers/net/wireless/bcmdhd/dhd_linux.c
+++ b/
drivers/net/wireless/bcmdhd/dhd_linux.c
@@
-4861,12
+4861,12
@@
void dhd_set_version_info(dhd_pub_t *dhdp, char *fw)
int i;
i = snprintf(info_string, sizeof(info_string),
- "
WLAN:\n
Driver: %s\n Firmware: %s ", EPI_VERSION_STR, fw);
+ " Driver: %s\n Firmware: %s ", EPI_VERSION_STR, fw);
if (!dhdp)
return;
i = snprintf(&info_string[i], sizeof(info_string) - i,
- "\n Chip: %x Rev %x Pkg %x
\n
", dhd_bus_chip_id(dhdp),
+ "\n Chip: %x Rev %x Pkg %x", dhd_bus_chip_id(dhdp),
dhd_bus_chiprev_id(dhdp), dhd_bus_chippkg_id(dhdp));
}