diff options
author | Borislav Petkov <bbpetkov@yahoo.de> | 2008-02-02 13:56:50 -0500 |
---|---|---|
committer | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2008-02-02 13:56:50 -0500 |
commit | 323875549f3f3afd8cfedc6d6b73eccf055000e7 (patch) | |
tree | 9a2e03313304cc67efe98017d97f39e46afc11eb /drivers/ide | |
parent | 3cffb9ce476f492bab194892decc7bf1834ff96b (diff) |
ide-tape: remove structs os_partition_t, os_dat_entry_t, os_dat_t
They seem just to sit there completely unused.
Signed-off-by: Borislav Petkov <bbpetkov@yahoo.de>
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Diffstat (limited to 'drivers/ide')
-rw-r--r-- | drivers/ide/ide-tape.c | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/drivers/ide/ide-tape.c b/drivers/ide/ide-tape.c index 2a4a652e3083..8aa68d3735d7 100644 --- a/drivers/ide/ide-tape.c +++ b/drivers/ide/ide-tape.c | |||
@@ -42,43 +42,6 @@ | |||
42 | #include <asm/uaccess.h> | 42 | #include <asm/uaccess.h> |
43 | #include <asm/io.h> | 43 | #include <asm/io.h> |
44 | #include <asm/unaligned.h> | 44 | #include <asm/unaligned.h> |
45 | |||
46 | /* | ||
47 | * partition | ||
48 | */ | ||
49 | typedef struct os_partition_s { | ||
50 | __u8 partition_num; | ||
51 | __u8 par_desc_ver; | ||
52 | __u16 wrt_pass_cntr; | ||
53 | __u32 first_frame_addr; | ||
54 | __u32 last_frame_addr; | ||
55 | __u32 eod_frame_addr; | ||
56 | } os_partition_t; | ||
57 | |||
58 | /* | ||
59 | * DAT entry | ||
60 | */ | ||
61 | typedef struct os_dat_entry_s { | ||
62 | __u32 blk_sz; | ||
63 | __u16 blk_cnt; | ||
64 | __u8 flags; | ||
65 | __u8 reserved; | ||
66 | } os_dat_entry_t; | ||
67 | |||
68 | /* | ||
69 | * DAT | ||
70 | */ | ||
71 | #define OS_DAT_FLAGS_DATA (0xc) | ||
72 | #define OS_DAT_FLAGS_MARK (0x1) | ||
73 | |||
74 | typedef struct os_dat_s { | ||
75 | __u8 dat_sz; | ||
76 | __u8 reserved1; | ||
77 | __u8 entry_cnt; | ||
78 | __u8 reserved3; | ||
79 | os_dat_entry_t dat_list[16]; | ||
80 | } os_dat_t; | ||
81 | |||
82 | #include <linux/mtio.h> | 45 | #include <linux/mtio.h> |
83 | 46 | ||
84 | /**************************** Tunable parameters *****************************/ | 47 | /**************************** Tunable parameters *****************************/ |