diff options
Diffstat (limited to 'drivers/s390/cio/eadm_sch.h')
-rw-r--r-- | drivers/s390/cio/eadm_sch.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/drivers/s390/cio/eadm_sch.h b/drivers/s390/cio/eadm_sch.h new file mode 100644 index 000000000000..2779be093982 --- /dev/null +++ b/drivers/s390/cio/eadm_sch.h | |||
@@ -0,0 +1,20 @@ | |||
1 | #ifndef EADM_SCH_H | ||
2 | #define EADM_SCH_H | ||
3 | |||
4 | #include <linux/device.h> | ||
5 | #include <linux/timer.h> | ||
6 | #include <linux/list.h> | ||
7 | #include "orb.h" | ||
8 | |||
9 | struct eadm_private { | ||
10 | union orb orb; | ||
11 | enum {EADM_IDLE, EADM_BUSY, EADM_NOT_OPER} state; | ||
12 | struct timer_list timer; | ||
13 | struct list_head head; | ||
14 | struct subchannel *sch; | ||
15 | } __aligned(8); | ||
16 | |||
17 | #define get_eadm_private(n) ((struct eadm_private *)dev_get_drvdata(&n->dev)) | ||
18 | #define set_eadm_private(n, p) (dev_set_drvdata(&n->dev, p)) | ||
19 | |||
20 | #endif | ||