Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f25eb448 authored by Corey Minyard's avatar Corey Minyard
Browse files

ipmi_si: Convert some types into unsigned



Things dealing with registers and addresses are all unsigned, make
them so.

Signed-off-by: default avatarCorey Minyard <cminyard@mvista.com>
parent 41b766d6
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -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;