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

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

ipmi: Use the proper type for acpi_handle



Minor cleanup, don't use a void pointer, use the right type.

Signed-off-by: default avatarCorey Minyard <cminyard@mvista.com>
parent ceb51ca8
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -37,6 +37,7 @@

#include <linux/list.h>
#include <linux/proc_fs.h>
#include <linux/acpi.h> /* For acpi_handle */

struct module;
struct device;
@@ -281,13 +282,15 @@ enum ipmi_addr_src {
const char *ipmi_addr_src_to_str(enum ipmi_addr_src src);

union ipmi_smi_info_union {
#ifdef CONFIG_ACPI
	/*
	 * the acpi_info element is defined for the SI_ACPI
	 * address type
	 */
	struct {
		void *acpi_handle;
		acpi_handle acpi_handle;
	} acpi_info;
#endif
};

struct ipmi_smi_info {