Messages in this thread Patch in this message |  | | | Subject | Re: [PATCH] PCI and I2C fixes for 2.6.8 | | Date | Mon, 23 Aug 2004 11:34:49 -0700 | | From | Greg KH <> |
| |
ChangeSet 1.1807.56.40, 2004/08/09 14:39:20-07:00, rl@hellgate.ch
[PATCH] PCI: saved_config_space -> u32
Match what the functions working on it expect.
Signed-off-by: Roger Luethi <rl@hellgate.ch> Signed-off-by: Greg Kroah-Hartman <greg@kroah.com>
include/linux/pci.h | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-)
diff -Nru a/include/linux/pci.h b/include/linux/pci.h --- a/include/linux/pci.h 2004-08-23 11:02:50 -07:00 +++ b/include/linux/pci.h 2004-08-23 11:02:50 -07:00 @@ -536,7 +536,7 @@ unsigned int is_enabled:1; /* pci_enable_device has been called */ unsigned int is_busmaster:1; /* device is busmaster */ - unsigned int saved_config_space[16]; /* config space saved at suspend time */ + u32 saved_config_space[16]; /* config space saved at suspend time */ #ifdef CONFIG_PCI_NAMES #define PCI_NAME_SIZE 96 #define PCI_NAME_HALF __stringify(43) /* less than half to handle slop */ - 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/
|  |