Stop some of the output from wrapping at 80 characters.

This commit is contained in:
Adrian Chadd 2012-03-11 02:00:59 +00:00
parent ecdb6b0261
commit 7223938408
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=232807

View File

@ -91,8 +91,10 @@ eeprom_v14_base_print(uint16_t *buf)
printf("| Version: 0x%.4x | Length: 0x%.4x | Checksum: 0x%.4x ",
eh->version, eh->length, eh->checksum);
printf("| CapFlags: 0x%.2x | eepMisc: 0x%.2x | RegDomain: 0x%.4x 0x%.4x | \n",
eh->opCapFlags, eh->eepMisc, eh->regDmn[0], eh->regDmn[1]);
printf("| CapFlags: 0x%.2x\n", eh->opCapFlags);
printf("| eepMisc: 0x%.2x | RegDomain: 0x%.4x 0x%.4x | \n",
eh->eepMisc, eh->regDmn[0], eh->regDmn[1]);
printf("| MAC: %.2x:%.2x:%.2x:%.2x:%.2x:%.2x ",
eh->macAddr[0], eh->macAddr[1], eh->macAddr[2],
eh->macAddr[3], eh->macAddr[4], eh->macAddr[5]);
@ -105,7 +107,7 @@ eeprom_v14_base_print(uint16_t *buf)
(int) eh->pwdclkind, (int) eh->fastClk5g, (int) eh->divChain,
(int) eh->rxGainType);
printf("| dacHiPwrMode_5G: 0x%.2x | openLoopPwrCntl: 0x%.2x | dacLpMode: 0x%.2x ",
printf("| dacHiPwrMode_5G: 0x%.2x | openLoopPwrCntl: 0x%.2x | dacLpMode: 0x%.2x\n",
(int) eh->dacHiPwrMode_5G, (int) eh->openLoopPwrCntl, (int) eh->dacLpMode);
printf("| txGainType: 0x%.2x | rcChainMask: 0x%.2x |\n",
(int) eh->txGainType, (int) eh->rcChainMask);