ipmi:powernv: Convert ipmi_smi_t to struct ipmi_smi
Since everything else has been converted. Signed-off-by: Corey Minyard <cminyard@mvista.com>
This commit is contained in:
parent
3f901c8651
commit
4a758c929d
|
@ -19,7 +19,7 @@
|
|||
|
||||
struct ipmi_smi_powernv {
|
||||
u64 interface_id;
|
||||
ipmi_smi_t intf;
|
||||
struct ipmi_smi *intf;
|
||||
unsigned int irq;
|
||||
|
||||
/**
|
||||
|
@ -33,7 +33,7 @@ struct ipmi_smi_powernv {
|
|||
struct opal_ipmi_msg *opal_msg;
|
||||
};
|
||||
|
||||
static int ipmi_powernv_start_processing(void *send_info, ipmi_smi_t intf)
|
||||
static int ipmi_powernv_start_processing(void *send_info, struct ipmi_smi *intf)
|
||||
{
|
||||
struct ipmi_smi_powernv *smi = send_info;
|
||||
|
||||
|
|
Loading…
Reference in New Issue