ipmi_si: Convert some types into unsigned
Things dealing with registers and addresses are all unsigned, make them so. Signed-off-by: Corey Minyard <cminyard@mvista.com>
This commit is contained in:
parent
41b766d661
commit
f25eb44832
|
@ -42,11 +42,11 @@ struct si_sm_io {
|
|||
* state machine shouldn't touch these.
|
||||
*/
|
||||
void __iomem *addr;
|
||||
int regspacing;
|
||||
int regsize;
|
||||
int regshift;
|
||||
unsigned int regspacing;
|
||||
unsigned int regsize;
|
||||
unsigned int regshift;
|
||||
int addr_type;
|
||||
long addr_data;
|
||||
unsigned long addr_data;
|
||||
enum ipmi_addr_src addr_source; /* ACPI, PCI, SMBIOS, hardcode, etc. */
|
||||
void (*addr_source_cleanup)(struct si_sm_io *io);
|
||||
void *addr_source_data;
|
||||
|
|
Loading…
Reference in New Issue