[PATCH 23/68] ide: add drive->class field

From: Bartlomiej Zolnierkiewicz
Date: Fri Jan 29 2010 - 11:05:59 EST


From: Bartlomiej Zolnierkiewicz <bzolnier@xxxxxxxxx>
Subject: [PATCH] ide: add drive->class field

Add class field to ide_drive_t matching class field used in
struct ata_device.

Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@xxxxxxxxx>
---
include/linux/ide.h | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)

Index: b/include/linux/ide.h
===================================================================
--- a/include/linux/ide.h
+++ b/include/linux/ide.h
@@ -520,7 +520,13 @@ struct ide_drive_s {
u8 dn; /* now wide spread use */
u8 devno; /* 0 or 1 */
u8 acoustic; /* acoustic management */
- u8 media; /* disk, cdrom, tape, floppy, ... */
+
+ /* disk, cdrom, tape, floppy, ... */
+ union {
+ u8 media;
+ u8 class;
+ };
+
u8 ready_stat; /* min status value for drive ready */
u8 mult_count; /* current multiple sector setting */
u8 mult_req; /* requested multiple sector setting */
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/