Commit 9e8b8992 authored by Corey Minyard's avatar Corey Minyard

ipmi:ssif: Remove rtc_us_timer

It was cruft left over from older handling of run to completion.

Cc: stable@vger.kernel.org
Signed-off-by: default avatarCorey Minyard <cminyard@mvista.com>
parent 8230831c
...@@ -241,12 +241,6 @@ struct ssif_info { ...@@ -241,12 +241,6 @@ struct ssif_info {
*/ */
bool req_flags; bool req_flags;
/*
* Used to perform timer operations when run-to-completion
* mode is on. This is a countdown timer.
*/
int rtc_us_timer;
/* Used for sending/receiving data. +1 for the length. */ /* Used for sending/receiving data. +1 for the length. */
unsigned char data[IPMI_MAX_MSG_LENGTH + 1]; unsigned char data[IPMI_MAX_MSG_LENGTH + 1];
unsigned int data_len; unsigned int data_len;
...@@ -530,7 +524,6 @@ static void msg_done_handler(struct ssif_info *ssif_info, int result, ...@@ -530,7 +524,6 @@ static void msg_done_handler(struct ssif_info *ssif_info, int result,
static void start_get(struct ssif_info *ssif_info) static void start_get(struct ssif_info *ssif_info)
{ {
ssif_info->rtc_us_timer = 0;
ssif_info->multi_pos = 0; ssif_info->multi_pos = 0;
ssif_i2c_send(ssif_info, msg_done_handler, I2C_SMBUS_READ, ssif_i2c_send(ssif_info, msg_done_handler, I2C_SMBUS_READ,
...@@ -622,7 +615,6 @@ static void msg_done_handler(struct ssif_info *ssif_info, int result, ...@@ -622,7 +615,6 @@ static void msg_done_handler(struct ssif_info *ssif_info, int result,
flags = ipmi_ssif_lock_cond(ssif_info, &oflags); flags = ipmi_ssif_lock_cond(ssif_info, &oflags);
ssif_info->waiting_alert = true; ssif_info->waiting_alert = true;
ssif_info->rtc_us_timer = SSIF_MSG_USEC;
if (!ssif_info->stopping) if (!ssif_info->stopping)
mod_timer(&ssif_info->retry_timer, mod_timer(&ssif_info->retry_timer,
jiffies + SSIF_MSG_JIFFIES); jiffies + SSIF_MSG_JIFFIES);
...@@ -973,7 +965,6 @@ static void msg_written_handler(struct ssif_info *ssif_info, int result, ...@@ -973,7 +965,6 @@ static void msg_written_handler(struct ssif_info *ssif_info, int result,
/* Wait a jiffie then request the next message */ /* Wait a jiffie then request the next message */
ssif_info->waiting_alert = true; ssif_info->waiting_alert = true;
ssif_info->retries_left = SSIF_RECV_RETRIES; ssif_info->retries_left = SSIF_RECV_RETRIES;
ssif_info->rtc_us_timer = SSIF_MSG_PART_USEC;
if (!ssif_info->stopping) if (!ssif_info->stopping)
mod_timer(&ssif_info->retry_timer, mod_timer(&ssif_info->retry_timer,
jiffies + SSIF_MSG_PART_JIFFIES); jiffies + SSIF_MSG_PART_JIFFIES);
......
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