aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/rt2860/eeprom.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/staging/rt2860/eeprom.h')
-rw-r--r--drivers/staging/rt2860/eeprom.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/staging/rt2860/eeprom.h b/drivers/staging/rt2860/eeprom.h
index 4d8e8bf1c23..50df5a2562a 100644
--- a/drivers/staging/rt2860/eeprom.h
+++ b/drivers/staging/rt2860/eeprom.h
@@ -42,26 +42,26 @@
42 * Public function declarations for prom-based chipset 42 * Public function declarations for prom-based chipset
43 ************************************************************************/ 43 ************************************************************************/
44int rtmp_ee_prom_read16(IN PRTMP_ADAPTER pAd, 44int rtmp_ee_prom_read16(IN PRTMP_ADAPTER pAd,
45 IN USHORT Offset, OUT USHORT * pValue); 45 u16 Offset, u16 * pValue);
46#endif /* RTMP_PCI_SUPPORT // */ 46#endif /* RTMP_PCI_SUPPORT // */
47#ifdef RTMP_USB_SUPPORT 47#ifdef RTMP_USB_SUPPORT
48/************************************************************************* 48/*************************************************************************
49 * Public function declarations for usb-based prom chipset 49 * Public function declarations for usb-based prom chipset
50 ************************************************************************/ 50 ************************************************************************/
51NTSTATUS RTUSBReadEEPROM16(IN PRTMP_ADAPTER pAd, 51int RTUSBReadEEPROM16(IN PRTMP_ADAPTER pAd,
52 IN USHORT offset, OUT PUSHORT pData); 52 u16 offset, u16 *pData);
53#endif /* RTMP_USB_SUPPORT // */ 53#endif /* RTMP_USB_SUPPORT // */
54 54
55#ifdef RT30xx 55#ifdef RT30xx
56#ifdef RTMP_EFUSE_SUPPORT 56#ifdef RTMP_EFUSE_SUPPORT
57int rtmp_ee_efuse_read16(IN RTMP_ADAPTER * pAd, 57int rtmp_ee_efuse_read16(IN RTMP_ADAPTER * pAd,
58 IN USHORT Offset, OUT USHORT * pValue); 58 u16 Offset, u16 * pValue);
59#endif /* RTMP_EFUSE_SUPPORT // */ 59#endif /* RTMP_EFUSE_SUPPORT // */
60#endif /* RT30xx // */ 60#endif /* RT30xx // */
61 61
62/************************************************************************* 62/*************************************************************************
63 * Public function declarations for prom operation callback functions setting 63 * Public function declarations for prom operation callback functions setting
64 ************************************************************************/ 64 ************************************************************************/
65INT RtmpChipOpsEepromHook(IN RTMP_ADAPTER * pAd, IN INT infType); 65int RtmpChipOpsEepromHook(IN RTMP_ADAPTER * pAd, int infType);
66 66
67#endif /* __EEPROM_H__ // */ 67#endif /* __EEPROM_H__ // */