1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-17 10:26:15 +00:00

remove dead code

Obtained from:	netbsd
This commit is contained in:
Sam Leffler 2008-12-13 03:49:01 +00:00
parent aed75e9d0a
commit dc798229e4
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=186019

View File

@ -160,18 +160,6 @@ v14EepromDiag(struct ath_hal *ah, int request,
return AH_FALSE;
}
/* XXX conditionalize by target byte order */
#ifndef bswap16
static __inline__ uint16_t
__bswap16(uint16_t _x)
{
return ((uint16_t)(
(((const uint8_t *)(&_x))[0] ) |
(((const uint8_t *)(&_x))[1]<< 8))
);
}
#endif
/* Do structure specific swaps if Eeprom format is non native to host */
static void
eepromSwap(struct ar5416eeprom *ee)