Skip to content

Commit

Permalink
ipmi:powernv: Convert ipmi_smi_t to struct ipmi_smi
Browse files Browse the repository at this point in the history
Since everything else has been converted.

Signed-off-by: Corey Minyard <[email protected]>
  • Loading branch information
cminyard committed Sep 18, 2018
1 parent 3f901c8 commit 4a758c9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/char/ipmi/ipmi_powernv.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

struct ipmi_smi_powernv {
u64 interface_id;
ipmi_smi_t intf;
struct ipmi_smi *intf;
unsigned int irq;

/**
Expand All @@ -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;

Expand Down

0 comments on commit 4a758c9

Please sign in to comment.