patch-2_6_7-vs1_9_1_12
[linux-2.6.git] / drivers / macintosh / therm_pm72.c
index 6636567..fb2e070 100644 (file)
@@ -146,13 +146,6 @@ static struct i2c_driver therm_pm72_driver =
        .detach_adapter = therm_pm72_detach,
 };
 
-
-static inline void wait_ms(unsigned int ms)
-{
-       set_current_state(TASK_UNINTERRUPTIBLE);
-       schedule_timeout(1 + (ms * HZ + 999) / 1000);
-}
-
 /*
  * Utility function to create an i2c_client structure and
  * attach it to one of u3 adapters
@@ -251,7 +244,7 @@ static int read_smon_adc(struct cpu_pid_state *state, int chan)
                if (rc <= 0)
                        goto error;
                /* Wait for convertion */
-               wait_ms(1);
+               msleep(1);
                /* Switch to data register */
                buf[0] = 4;
                rc = i2c_master_send(state->monitor, buf, 1);
@@ -269,7 +262,7 @@ static int read_smon_adc(struct cpu_pid_state *state, int chan)
                        printk(KERN_ERR "therm_pm72: Error reading ADC !\n");
                        return -1;
                }
-               wait_ms(10);
+               msleep(10);
        }
 }
 
@@ -283,7 +276,7 @@ static int fan_read_reg(int reg, unsigned char *buf, int nb)
                nw = i2c_master_send(fcu, buf, 1);
                if (nw > 0 || (nw < 0 && nw != -EIO) || tries >= 100)
                        break;
-               wait_ms(10);
+               msleep(10);
                ++tries;
        }
        if (nw <= 0) {
@@ -295,7 +288,7 @@ static int fan_read_reg(int reg, unsigned char *buf, int nb)
                nr = i2c_master_recv(fcu, buf, nb);
                if (nr > 0 || (nr < 0 && nr != ENODEV) || tries >= 100)
                        break;
-               wait_ms(10);
+               msleep(10);
                ++tries;
        }
        if (nr <= 0)
@@ -316,7 +309,7 @@ static int fan_write_reg(int reg, const unsigned char *ptr, int nb)
                nw = i2c_master_send(fcu, buf, nb);
                if (nw > 0 || (nw < 0 && nw != EIO) || tries >= 100)
                        break;
-               wait_ms(10);
+               msleep(10);
                ++tries;
        }
        if (nw < 0)