]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
Staging: comedi: Remove use of VOID typedef in addi-data
authorBill Pemberton <wfp5p@virginia.edu>
Thu, 19 Mar 2009 22:00:47 +0000 (18:00 -0400)
committerGreg Kroah-Hartman <gregkh@suse.de>
Fri, 3 Apr 2009 21:54:18 +0000 (14:54 -0700)
Signed-off-by: Bill Pemberton <wfp5p@virginia.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/staging/comedi/drivers/addi-data/addi_common.h
drivers/staging/comedi/drivers/addi-data/addi_eeprom.c
drivers/staging/comedi/drivers/addi-data/hwdrv_APCI1710.c
drivers/staging/comedi/drivers/addi-data/hwdrv_apci1032.c
drivers/staging/comedi/drivers/addi-data/hwdrv_apci1032.h
drivers/staging/comedi/drivers/addi-data/hwdrv_apci1500.c
drivers/staging/comedi/drivers/addi-data/hwdrv_apci1564.c
drivers/staging/comedi/drivers/addi-data/hwdrv_apci1564.h
drivers/staging/comedi/drivers/addi-data/hwdrv_apci2016.h
drivers/staging/comedi/drivers/addi-data/hwdrv_apci3200.c

index b3ad58e9df93bdee7e751d274f0753096a73e3d2..fb8e25d250a034eeef48065c174e9154ec298b83 100644 (file)
@@ -37,7 +37,6 @@
 #define SUCCESS        1
 
 /* variable type definition */
-typedef void VOID, *PVOID;
 typedef char CHAR, *PCHAR;
 typedef const CHAR *PCSTR;
 typedef unsigned char BYTE, *PBYTE;
index bf83af20f4897153796c1ae1734daa5bb836e5f0..29026ab5c61d5d32fea9de9cb3b09fbc4ca55018 100644 (file)
@@ -148,12 +148,12 @@ INT i_EepromReadAnlogInputHeader(WORD w_PCIBoardEepromAddress,
                /******************************************/
 WORD w_EepromReadWord(WORD w_PCIBoardEepromAddress, PCHAR pc_PCIChipInformation,
        WORD w_EepromStartAddress);
-VOID v_EepromWaitBusy(WORD w_PCIBoardEepromAddress);
-VOID v_EepromClock76(DWORD dw_Address, DWORD dw_RegisterValue);
-VOID v_EepromWaitBusy(WORD w_PCIBoardEepromAddress);
-VOID v_EepromSendCommand76(DWORD dw_Address, DWORD dw_EepromCommand,
+void v_EepromWaitBusy(WORD w_PCIBoardEepromAddress);
+void v_EepromClock76(DWORD dw_Address, DWORD dw_RegisterValue);
+void v_EepromWaitBusy(WORD w_PCIBoardEepromAddress);
+void v_EepromSendCommand76(DWORD dw_Address, DWORD dw_EepromCommand,
        BYTE b_DataLengthInBits);
-VOID v_EepromCs76Read(DWORD dw_Address, WORD w_offset, PWORD pw_Value);
+void v_EepromCs76Read(DWORD dw_Address, WORD w_offset, PWORD pw_Value);
 
 /*
 +----------------------------------------------------------------------------+
@@ -357,7 +357,7 @@ WORD w_EepromReadWord(WORD w_PCIBoardEepromAddress, PCHAR pc_PCIChipInformation,
 
 +----------------------------------------------------------------------------+
 
-| Function   Name   : VOID v_EepromWaitBusy                                  |
+| Function   Name   : void v_EepromWaitBusy                                  |
 
 |                      (WORD   w_PCIBoardEepromAddress)                         |
 
@@ -381,7 +381,7 @@ WORD w_EepromReadWord(WORD w_PCIBoardEepromAddress, PCHAR pc_PCIChipInformation,
 
 */
 
-VOID v_EepromWaitBusy(WORD w_PCIBoardEepromAddress)
+void v_EepromWaitBusy(WORD w_PCIBoardEepromAddress)
 {
 
        BYTE b_EepromBusy = 0;
@@ -421,7 +421,7 @@ VOID v_EepromWaitBusy(WORD w_PCIBoardEepromAddress)
 
 +---------------------------------------------------------------------------------+
 
-| Function   Name   : VOID v_EepromClock76(DWORD dw_Address,                      |
+| Function   Name   : void v_EepromClock76(DWORD dw_Address,                      |
 
 |                                         DWORD dw_RegisterValue)                                        |
 
@@ -447,7 +447,7 @@ VOID v_EepromWaitBusy(WORD w_PCIBoardEepromAddress)
 
 */
 
-VOID v_EepromClock76(DWORD dw_Address, DWORD dw_RegisterValue)
+void v_EepromClock76(DWORD dw_Address, DWORD dw_RegisterValue)
 {
 
    /************************/
@@ -488,7 +488,7 @@ VOID v_EepromClock76(DWORD dw_Address, DWORD dw_RegisterValue)
 
 +---------------------------------------------------------------------------------+
 
-| Function   Name   : VOID v_EepromSendCommand76(DWORD dw_Address,                |
+| Function   Name   : void v_EepromSendCommand76(DWORD dw_Address,                |
 
 |                                         DWORD   dw_EepromCommand,                              |
 
@@ -518,7 +518,7 @@ VOID v_EepromClock76(DWORD dw_Address, DWORD dw_RegisterValue)
 
 */
 
-VOID v_EepromSendCommand76(DWORD dw_Address, DWORD dw_EepromCommand,
+void v_EepromSendCommand76(DWORD dw_Address, DWORD dw_EepromCommand,
        BYTE b_DataLengthInBits)
 {
 
@@ -623,7 +623,7 @@ VOID v_EepromSendCommand76(DWORD dw_Address, DWORD dw_EepromCommand,
 
 +---------------------------------------------------------------------------------+
 
-| Function   Name   : VOID v_EepromCs76Read(DWORD dw_Address,                     |
+| Function   Name   : void v_EepromCs76Read(DWORD dw_Address,                     |
 
 |                                         WORD    w_offset,                                              |
 
@@ -653,7 +653,7 @@ VOID v_EepromSendCommand76(DWORD dw_Address, DWORD dw_EepromCommand,
 
 */
 
-VOID v_EepromCs76Read(DWORD dw_Address, WORD w_offset, PWORD pw_Value)
+void v_EepromCs76Read(DWORD dw_Address, WORD w_offset, PWORD pw_Value)
 {
 
        CHAR c_BitPos = 0;
index 510323d7b7cb269e95c5b2b29759ca3221df6fa2..3f8929c09070f0974f70e39711bde7aad6eb39b0 100644 (file)
@@ -196,7 +196,7 @@ void i_ADDI_AttachPCI1710(struct comedi_device * dev)
 }
 
 int i_APCI1710_Reset(struct comedi_device * dev);
-VOID v_APCI1710_Interrupt(int irq, void *d);
+void v_APCI1710_Interrupt(int irq, void *d);
 //for 1710
 
 int i_APCI1710_Reset(struct comedi_device * dev)
@@ -233,7 +233,7 @@ int i_APCI1710_Reset(struct comedi_device * dev)
 
 /*
 +----------------------------------------------------------------------------+
-| Function's Name   : __VOID__ v_APCI1710_InterruptFunction                  |
+| Function's Name   : __void__ v_APCI1710_InterruptFunction                  |
 |                              (BYTE b_Interrupt, __CPPARGS)                |
 +----------------------------------------------------------------------------+
 | Task              : APCI-1710 interrupt function                           |
@@ -247,7 +247,7 @@ int i_APCI1710_Reset(struct comedi_device * dev)
 +----------------------------------------------------------------------------+
 */
 
-VOID v_APCI1710_Interrupt(int irq, void *d)
+void v_APCI1710_Interrupt(int irq, void *d)
 {
        struct comedi_device *dev = d;
        BYTE b_ModuleCpt = 0;
index 05ea0784d764bd05bb2a04ae925aa86fb6ee3b54..32796ceb946e1b4ec9d4407a1cc862623b78ec6f 100644 (file)
@@ -243,7 +243,7 @@ INT i_APCI1032_ReadMoreDigitalInput(struct comedi_device * dev, struct comedi_su
 |                                                                           |
 +----------------------------------------------------------------------------+
 */
-static VOID v_APCI1032_Interrupt(int irq, void *d)
+static void v_APCI1032_Interrupt(int irq, void *d)
 {
        struct comedi_device *dev = d;
 
index d45707f3eaf27827b7c383a484d50f81dda47961..659ef85088cdfe7e6c35ca50e8320c31bf7c94a8 100644 (file)
@@ -58,6 +58,6 @@ INT i_APCI1032_ReadMoreDigitalInput(struct comedi_device *dev, struct comedi_sub
 
 // Interrupt functions.....
 
-static VOID v_APCI1032_Interrupt(int irq, void *d);
+static void v_APCI1032_Interrupt(int irq, void *d);
 //Reset
 INT i_APCI1032_Reset(struct comedi_device *dev);
index c9035ceaade459e9aad8fad4ff741897e8d5e84c..2d6adcff41e3b5d673aa0a13f10a08e56fcd10d2 100644 (file)
@@ -2576,7 +2576,7 @@ int i_APCI1500_ConfigureInterrupt(struct comedi_device * dev, struct comedi_subd
 |                                                                               |
 +----------------------------------------------------------------------------+
 */
-static VOID v_APCI1500_Interrupt(int irq, void *d)
+static void v_APCI1500_Interrupt(int irq, void *d)
 {
 
        struct comedi_device *dev = d;
index da69bee176e6571cee99837473a97606afc2c0cc..a6b504c3d391a6463abc521b43ac806009e2ed2a 100644 (file)
@@ -916,7 +916,7 @@ int i_APCI1564_ReadInterruptStatus(struct comedi_device * dev, struct comedi_sub
 |                                                                               |
 +----------------------------------------------------------------------------+
 */
-static VOID v_APCI1564_Interrupt(int irq, void *d)
+static void v_APCI1564_Interrupt(int irq, void *d)
 {
        struct comedi_device *dev = d;
        UINT ui_DO, ui_DI;
index 2fbc8ce7b7642bd4964cc7c0b4f35fc853581c47..f0c461ca5396fb6af776d5aef65496fdaa3dd44f 100644 (file)
@@ -113,7 +113,7 @@ int i_APCI1564_ReadTimerCounterWatchdog(struct comedi_device *dev,
                                        struct comedi_insn *insn, unsigned int *data);
 
 // INTERRUPT
-static VOID v_APCI1564_Interrupt(int irq, void *d);
+static void v_APCI1564_Interrupt(int irq, void *d);
 
 // RESET
 INT i_APCI1564_Reset(struct comedi_device *dev);
index b6a3a999c906f8c40087c9c452692486f361206b..9261aacd25f1f1a9e2966726a0f2b1522cc6b05a 100644 (file)
@@ -63,8 +63,8 @@ int i_APCI2016_ReadWatchdog(struct comedi_device *dev, struct comedi_subdevice *
 
 // Interrupt functions.....
 
-// VOID v_APCI2016_Interrupt(int irq, void *d) ;
+// void v_APCI2016_Interrupt(int irq, void *d) ;
 
- //VOID v_APCI2016_Interrupt(int irq, void *d);
+ //void v_APCI2016_Interrupt(int irq, void *d);
 // RESET
 INT i_APCI2016_Reset(struct comedi_device *dev);
index b4a900308b960171bfa7b88c4451a793486fc883..1ff66bee548d4cff0cb6ce08b1f1adc804a80243 100644 (file)
@@ -247,7 +247,7 @@ INT i_AddiHeaderRW_ReadEeprom(INT i_NbOfWordsToRead,
 }
 
 /*+----------------------------------------------------------------------------+*/
-/*| Function   Name   : VOID v_GetAPCI3200EepromCalibrationValue (VOID)        |*/
+/*| Function   Name   : void v_GetAPCI3200EepromCalibrationValue (void)        |*/
 /*+----------------------------------------------------------------------------+*/
 /*| Task              : Read calibration value from the APCI-3200 eeprom.      |*/
 /*+----------------------------------------------------------------------------+*/
@@ -258,7 +258,7 @@ INT i_AddiHeaderRW_ReadEeprom(INT i_NbOfWordsToRead,
 /*| Return Value      : -                                                      |*/
 /*+----------------------------------------------------------------------------+*/
 
-VOID v_GetAPCI3200EepromCalibrationValue(DWORD dw_PCIBoardEepromAddress,
+void v_GetAPCI3200EepromCalibrationValue(DWORD dw_PCIBoardEepromAddress,
        str_BoardInfos * BoardInformations)
 {
        WORD w_AnalogInputMainHeaderAddress;