staging: unisys: fix CamelCase names in struct pci_id

Fix CamelCase names:

Domain => domain
Bus => bus
Slot => slot
Func => func
Reserved => reserved

Signed-off-by: Benjamin Romer <benjamin.romer@unisys.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Benjamin Romer
2014-10-23 14:30:19 -04:00
committed by Greg Kroah-Hartman
parent af3286bdb4
commit 6822f736c6

View File

@@ -143,11 +143,11 @@ struct irq_info {
};
struct pci_id {
u16 Domain;
u8 Bus;
u8 Slot;
u8 Func;
u8 Reserved[3]; /* Natural alignment purposes */
u16 domain;
u8 bus;
u8 slot;
u8 func;
u8 reserved[3]; /* Natural alignment purposes */
};
struct PciConfigHdr {