staging: comedi: addi_apci_3501: reorder code a bit
authorH Hartley Sweeten <hsweeten@visionengravers.com>
Wed, 23 Jan 2013 19:43:55 +0000 (12:43 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 25 Jan 2013 20:00:30 +0000 (12:00 -0800)
Move the private struct definition and the #include of the
low-level support code to prepare for merging the code in
hwdrv_apci3501.c into the driver.

Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Cc: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/comedi/drivers/addi_apci_3501.c

index 6207622467a6520e2a9ee5ca94ea253dcd0eb4ae..a7527a2fe4f062404cfa7d78aae5414811c6ee89 100644 (file)
 #define APCI3501_DO_REG                                0x40
 #define APCI3501_DI_REG                                0x50
 
-struct apci3501_private {
-       int i_IobaseAmcc;
-       struct task_struct *tsk_Current;
-       unsigned char b_TimerSelectMode;
-       unsigned char b_InterruptMode;
-};
-
-#include "addi-data/hwdrv_apci3501.c"
-
 /*
  * AMCC S5933 NVRAM
  */
@@ -42,6 +33,15 @@ struct apci3501_private {
 #define EEPROM_WATCHDOG                        5
 #define EEPROM_TIMER_WATCHDOG_COUNTER  10
 
+struct apci3501_private {
+       int i_IobaseAmcc;
+       struct task_struct *tsk_Current;
+       unsigned char b_TimerSelectMode;
+       unsigned char b_InterruptMode;
+};
+
+#include "addi-data/hwdrv_apci3501.c"
+
 static int apci3501_di_insn_bits(struct comedi_device *dev,
                                 struct comedi_subdevice *s,
                                 struct comedi_insn *insn,