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:
parent
af3286bdb4
commit
6822f736c6
1 changed files with 5 additions and 5 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue