Messages in this thread Patch in this message |  | | Date | Tue, 6 Nov 2001 18:09:25 +0100 (MET) | From | Geert Uytterhoeven <> | Subject | Re: Linux 2.4.13-ac6 |
| |
On Fri, 2 Nov 2001, Alan Cox wrote: > 2.4.13-ac6 > o IDE driver updates (Andre Hedrick > Michael Cornwell) > | Taskfile framework > | Disk suspend cache flushing > | Driver updates > | UDMA133
--- linux-2.4.13-ac5/include/asm-parisc/ide.h Tue Dec 5 21:29:39 2000 +++ linux-2.4.13-ac6/include/asm-parisc/ide.h Mon Nov 5 10:10:00 2001 @@ -90,7 +90,19 @@ unsigned lba : 1; /* using LBA instead of CHS */ unsigned bit7 : 1; /* always 1 */ } b; - } select_t; +} select_t; + +typedef union { + unsigned all : 8; /* all of the bits together */ + struct { + unsigned bit0 : 1; + unsigned nIEN : 1; /* device INTRQ to host */ + unsigned SRST : 1; /* host soft reset bit */ + unsigned bit3 : 1; /* ATA-2 thingy */ + unsigned reserved456 : 3; + unsigned HOB : 1; /* 48-bit address ordering */ + } b; +} control_t;
Any special reason why this is the little-endian control_t definition? AFAIK PA-RISC$ is big-endian (and asm-parisc/byteorder.h seems to agree).
Gr{oetje,eeting}s,
Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org
In personal conversations with technical people, I call myself a hacker. But when I'm talking to journalists I just say "programmer" or something like that. -- Linus Torvalds
- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
|  |