diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/ide.h | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/include/linux/ide.h b/include/linux/ide.h index cf1a5aaebd9e..790ffa7f6949 100644 --- a/include/linux/ide.h +++ b/include/linux/ide.h | |||
@@ -346,30 +346,6 @@ typedef union { | |||
346 | } select_t, ata_select_t; | 346 | } select_t, ata_select_t; |
347 | 347 | ||
348 | /* | 348 | /* |
349 | * ATAPI Interrupt Reason Register. | ||
350 | * | ||
351 | * cod : Information transferred is command (1) or data (0) | ||
352 | * io : The device requests us to read (1) or write (0) | ||
353 | * reserved : Reserved | ||
354 | */ | ||
355 | typedef union { | ||
356 | unsigned all :8; | ||
357 | struct { | ||
358 | #if defined(__LITTLE_ENDIAN_BITFIELD) | ||
359 | unsigned cod :1; | ||
360 | unsigned io :1; | ||
361 | unsigned reserved :6; | ||
362 | #elif defined(__BIG_ENDIAN_BITFIELD) | ||
363 | unsigned reserved :6; | ||
364 | unsigned io :1; | ||
365 | unsigned cod :1; | ||
366 | #else | ||
367 | #error "Please fix <asm/byteorder.h>" | ||
368 | #endif | ||
369 | } b; | ||
370 | } atapi_ireason_t; | ||
371 | |||
372 | /* | ||
373 | * Status returned from various ide_ functions | 349 | * Status returned from various ide_ functions |
374 | */ | 350 | */ |
375 | typedef enum { | 351 | typedef enum { |