Commit 57bccb4e authored by Corey Minyard's avatar Corey Minyard

ipmi_si: Rename intf_num to si_num

There is already an intf_num in the main IPMI device structure, use
a different name in the ipmi_si code to avoid confusion.
Signed-off-by: default avatarCorey Minyard <cminyard@mvista.com>
parent 0fbecb4f
...@@ -122,7 +122,7 @@ enum si_stat_indexes { ...@@ -122,7 +122,7 @@ enum si_stat_indexes {
}; };
struct smi_info { struct smi_info {
int intf_num; int si_num;
struct ipmi_smi *intf; struct ipmi_smi *intf;
struct si_sm_data *si_sm; struct si_sm_data *si_sm;
const struct si_sm_handlers *handlers; const struct si_sm_handlers *handlers;
...@@ -957,8 +957,8 @@ static inline int ipmi_thread_busy_wait(enum si_sm_result smi_result, ...@@ -957,8 +957,8 @@ static inline int ipmi_thread_busy_wait(enum si_sm_result smi_result,
{ {
unsigned int max_busy_us = 0; unsigned int max_busy_us = 0;
if (smi_info->intf_num < num_max_busy_us) if (smi_info->si_num < num_max_busy_us)
max_busy_us = kipmid_max_busy_us[smi_info->intf_num]; max_busy_us = kipmid_max_busy_us[smi_info->si_num];
if (max_busy_us == 0 || smi_result != SI_SM_CALL_WITH_DELAY) if (max_busy_us == 0 || smi_result != SI_SM_CALL_WITH_DELAY)
ipmi_si_set_not_busy(busy_until); ipmi_si_set_not_busy(busy_until);
else if (!ipmi_si_is_busy(busy_until)) { else if (!ipmi_si_is_busy(busy_until)) {
...@@ -1160,8 +1160,8 @@ static int smi_start_processing(void *send_info, ...@@ -1160,8 +1160,8 @@ static int smi_start_processing(void *send_info,
/* /*
* Check if the user forcefully enabled the daemon. * Check if the user forcefully enabled the daemon.
*/ */
if (new_smi->intf_num < num_force_kipmid) if (new_smi->si_num < num_force_kipmid)
enable = force_kipmid[new_smi->intf_num]; enable = force_kipmid[new_smi->si_num];
/* /*
* The BT interface is efficient enough to not need a thread, * The BT interface is efficient enough to not need a thread,
* and there is no need for a thread if we have interrupts. * and there is no need for a thread if we have interrupts.
...@@ -1171,7 +1171,7 @@ static int smi_start_processing(void *send_info, ...@@ -1171,7 +1171,7 @@ static int smi_start_processing(void *send_info,
if (enable) { if (enable) {
new_smi->thread = kthread_run(ipmi_thread, new_smi, new_smi->thread = kthread_run(ipmi_thread, new_smi,
"kipmi%d", new_smi->intf_num); "kipmi%d", new_smi->si_num);
if (IS_ERR(new_smi->thread)) { if (IS_ERR(new_smi->thread)) {
dev_notice(new_smi->io.dev, "Could not start" dev_notice(new_smi->io.dev, "Could not start"
" kernel thread due to error %ld, only using" " kernel thread due to error %ld, only using"
...@@ -2053,19 +2053,19 @@ static int try_smi_init(struct smi_info *new_smi) ...@@ -2053,19 +2053,19 @@ static int try_smi_init(struct smi_info *new_smi)
goto out_err; goto out_err;
} }
new_smi->intf_num = smi_num; new_smi->si_num = smi_num;
/* Do this early so it's available for logs. */ /* Do this early so it's available for logs. */
if (!new_smi->io.dev) { if (!new_smi->io.dev) {
init_name = kasprintf(GFP_KERNEL, "ipmi_si.%d", init_name = kasprintf(GFP_KERNEL, "ipmi_si.%d",
new_smi->intf_num); new_smi->si_num);
/* /*
* If we don't already have a device from something * If we don't already have a device from something
* else (like PCI), then register a new one. * else (like PCI), then register a new one.
*/ */
new_smi->pdev = platform_device_alloc("ipmi_si", new_smi->pdev = platform_device_alloc("ipmi_si",
new_smi->intf_num); new_smi->si_num);
if (!new_smi->pdev) { if (!new_smi->pdev) {
pr_err(PFX "Unable to allocate platform device\n"); pr_err(PFX "Unable to allocate platform device\n");
rv = -ENOMEM; rv = -ENOMEM;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment