Commit 6822f736 authored by Benjamin Romer's avatar Benjamin Romer Committed by Greg Kroah-Hartman

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: default avatarBenjamin Romer <benjamin.romer@unisys.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent af3286bd
...@@ -143,11 +143,11 @@ struct irq_info { ...@@ -143,11 +143,11 @@ struct irq_info {
}; };
struct pci_id { struct pci_id {
u16 Domain; u16 domain;
u8 Bus; u8 bus;
u8 Slot; u8 slot;
u8 Func; u8 func;
u8 Reserved[3]; /* Natural alignment purposes */ u8 reserved[3]; /* Natural alignment purposes */
}; };
struct PciConfigHdr { struct PciConfigHdr {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment