Skip to content
This repository has been archived by the owner on Nov 8, 2023. It is now read-only.

Commit

Permalink
net: wireless: bcmdhd: Adjust driver/fw/chip info format
Browse files Browse the repository at this point in the history
Signed-off-by: Dmitry Shmidt <dimitrysh@google.com>
  • Loading branch information
Dmitry Shmidt committed Jul 16, 2012
1 parent 0902d69 commit b95d9dd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/net/wireless/bcmdhd/dhd_linux.c
Original file line number Diff line number Diff line change
Expand Up @@ -5237,12 +5237,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));
}

Expand Down

0 comments on commit b95d9dd

Please sign in to comment.