- Inadvertently committed files with +x attribute, fixed.

- Minor change to info output string.
This commit is contained in:
David Christensen 2011-03-15 01:06:27 +00:00
parent eb14346a8e
commit ee50cfe1f1
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=219656
17 changed files with 20 additions and 9 deletions

0
sys/dev/bxe/bxe_debug.h Executable file → Normal file
View file

0
sys/dev/bxe/bxe_fw_defs.h Executable file → Normal file
View file

0
sys/dev/bxe/bxe_hsi.h Executable file → Normal file
View file

0
sys/dev/bxe/bxe_include.h Executable file → Normal file
View file

0
sys/dev/bxe/bxe_init.h Executable file → Normal file
View file

0
sys/dev/bxe/bxe_init_values_e1.h Executable file → Normal file
View file

0
sys/dev/bxe/bxe_init_values_e1h.h Executable file → Normal file
View file

0
sys/dev/bxe/bxe_link.c Executable file → Normal file
View file

0
sys/dev/bxe/bxe_link.h Executable file → Normal file
View file

0
sys/dev/bxe/bxe_reg.h Executable file → Normal file
View file

0
sys/dev/bxe/bxe_self_test.h Executable file → Normal file
View file

0
sys/dev/bxe/dump_e1.h Executable file → Normal file
View file

0
sys/dev/bxe/dump_e1h.h Executable file → Normal file
View file

0
sys/dev/bxe/hw_dump_reg_st.h Executable file → Normal file
View file

29
sys/dev/bxe/if_bxe.c Executable file → Normal file
View file

@ -986,6 +986,7 @@ bxe_probe(device_t dev)
static void
bxe_print_adapter_info(struct bxe_softc *sc)
{
int i = 0;
DBENTER(BXE_EXTREME_LOAD);
@ -1008,17 +1009,26 @@ bxe_print_adapter_info(struct bxe_softc *sc)
}
/* Device features. */
printf("); Flags ( ");
printf("); Flags (");
/* Miscellaneous flags. */
if (sc->bxe_flags & BXE_USING_MSI_FLAG)
printf("MSI ");
if (sc->bxe_flags & BXE_USING_MSIX_FLAG)
printf("MSI-X ");
if (sc->bxe_flags & BXE_SAFC_TX_FLAG)
printf("SAFC ");
if (TPA_ENABLED(sc))
printf("TPA ");
printf("MSI");
if (sc->bxe_flags & BXE_USING_MSIX_FLAG) {
if (i > 0) printf("|");
printf("MSI-X"); i++;
}
if (sc->bxe_flags & BXE_SAFC_TX_FLAG) {
if (i > 0) printf("|");
printf("SAFC"); i++;
}
if (TPA_ENABLED(sc)) {
if (i > 0) printf("|");
printf("TPA"); i++;
}
printf(") Queues (");
switch (sc->multi_mode) {
@ -1032,8 +1042,9 @@ bxe_print_adapter_info(struct bxe_softc *sc)
printf("Unknown");
break;
}
/* Firmware versions and device features. */
BXE_PRINTF("Firmware (%d.%d.%d); Bootcode (%d.%d.%d)\n",
printf("); Firmware (%d.%d.%d); Bootcode (%d.%d.%d)\n",
BCM_5710_FW_MAJOR_VERSION,
BCM_5710_FW_MINOR_VERSION,
BCM_5710_FW_REVISION_VERSION,

0
sys/dev/bxe/if_bxe.h Executable file → Normal file
View file

0
sys/modules/bxe/Makefile Executable file → Normal file
View file