Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=3071a9d00b8684899d93f368e670c4de0293df29
Commit:     3071a9d00b8684899d93f368e670c4de0293df29
Parent:     e62925dd26ef9594b8e4b9380b3211f6dae4ab96
Author:     Bartlomiej Zolnierkiewicz <[EMAIL PROTECTED]>
AuthorDate: Fri Jan 25 22:17:17 2008 +0100
Committer:  Bartlomiej Zolnierkiewicz <[EMAIL PROTECTED]>
CommitDate: Fri Jan 25 22:17:17 2008 +0100

    ide: make 'extra' field in struct ide_port_info u8
    
    The maximum value used currently for 'extra' field in struct ide_port_info
    is 240.
    
    Make 'extra' u8 so it packs nicely together with enablebits[] and 'chipset'
    fields (ide_pci_enablebit_t is 3 bytes and hwif_chipset_t is 1 byte).
    
    Acked-by: Sergei Shtylyov <[EMAIL PROTECTED]>
    Signed-off-by: Bartlomiej Zolnierkiewicz <[EMAIL PROTECTED]>
---
 include/linux/ide.h |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/include/linux/ide.h b/include/linux/ide.h
index ecaa96e..6f5b6b5 100644
--- a/include/linux/ide.h
+++ b/include/linux/ide.h
@@ -1111,7 +1111,7 @@ struct ide_port_info {
        void                    (*fixup)(ide_hwif_t *);
        ide_pci_enablebit_t     enablebits[2];
        hwif_chipset_t          chipset;
-       unsigned int            extra;
+       u8                      extra;
        u32                     host_flags;
        u8                      pio_mask;
        u8                      swdma_mask;
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to