aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/misc
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/misc')
-rw-r--r--drivers/misc/eeprom_93cx6.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/misc/eeprom_93cx6.c b/drivers/misc/eeprom_93cx6.c
index 0d6d742d42c..ac515b0ef67 100644
--- a/drivers/misc/eeprom_93cx6.c
+++ b/drivers/misc/eeprom_93cx6.c
@@ -42,10 +42,10 @@ static inline void eeprom_93cx6_pulse_high(struct eeprom_93cx6 *eeprom)
42 42
43 /* 43 /*
44 * Add a short delay for the pulse to work. 44 * Add a short delay for the pulse to work.
45 * According to the specifications the minimal time 45 * According to the specifications the "maximum minimum"
46 * should be 450ns so a 1us delay is sufficient. 46 * time should be 450ns.
47 */ 47 */
48 udelay(1); 48 ndelay(450);
49} 49}
50 50
51static inline void eeprom_93cx6_pulse_low(struct eeprom_93cx6 *eeprom) 51static inline void eeprom_93cx6_pulse_low(struct eeprom_93cx6 *eeprom)