aboutsummaryrefslogtreecommitdiffstats
path: root/lib/raid6/algos.c
diff options
context:
space:
mode:
authorLucas De Marchi <lucas.de.marchi@gmail.com>2010-09-07 12:49:45 -0400
committerLen Brown <len.brown@intel.com>2010-09-28 21:38:19 -0400
commit58f87ed0d45141a90167f34c0959d607160a26df (patch)
treec9c279958afd9c05d466a2f05b59d4e74d9423af /lib/raid6/algos.c
parente9f74c489c9d4209946c04f29e7a724cb5537206 (diff)
ACPI: Fix typos
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'lib/raid6/algos.c')
0 files changed, 0 insertions, 0 deletions
} comstats_t; /* * Board stats structure. Returns useful info about the board. */ #define COM_MAXPANELS 8 typedef struct { unsigned long panel; unsigned long type; unsigned long hwid; unsigned long nrports; } companel_t; typedef struct { unsigned long brd; unsigned long type; unsigned long hwid; unsigned long state; unsigned long ioaddr; unsigned long ioaddr2; unsigned long memaddr; unsigned long irq; unsigned long nrpanels; unsigned long nrports; companel_t panels[COM_MAXPANELS]; } combrd_t; /* * Define the ioctl operations for stats stuff. */ #include <linux/ioctl.h> #define COM_GETPORTSTATS _IO('c',30) #define COM_CLRPORTSTATS _IO('c',31) #define COM_GETBRDSTATS _IO('c',32) /* * Define the set of ioctls that give user level access to the * private port, panel and board structures. The argument required * will be driver dependent! */ #define COM_READPORT _IO('c',40) #define COM_READBOARD _IO('c',41) #define COM_READPANEL _IO('c',42) /*****************************************************************************/ #endif