Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 58338
b: refs/heads/master
c: 4b914dc
h: refs/heads/master
v: v3
  • Loading branch information
Ivo van Doorn authored and Jeff Garzik committed Jul 9, 2007
1 parent 0c80d63 commit fc08a76
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 9467d64b0e88763914c01f71ddf591b166c4f526
refs/heads/master: 4b914dc0493edff19ff698a18198a173a14ba9d2
12 changes: 12 additions & 0 deletions trunk/drivers/misc/eeprom_93cx6.c
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,25 @@ static inline void eeprom_93cx6_pulse_high(struct eeprom_93cx6 *eeprom)
{
eeprom->reg_data_clock = 1;
eeprom->register_write(eeprom);

/*
* Add a short delay for the pulse to work.
* According to the specifications the minimal time
* should be 450ns so a 1us delay is sufficient.
*/
udelay(1);
}

static inline void eeprom_93cx6_pulse_low(struct eeprom_93cx6 *eeprom)
{
eeprom->reg_data_clock = 0;
eeprom->register_write(eeprom);

/*
* Add a short delay for the pulse to work.
* According to the specifications the minimal time
* should be 450ns so a 1us delay is sufficient.
*/
udelay(1);
}

Expand Down

0 comments on commit fc08a76

Please sign in to comment.