mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 01:31:44 +00:00
[PATCH] eeprom_93cx6: Add comment for 1us delay after pulse
This will add a comment for the 1us delay which is taken after the pulse has been switched. The 1us delay is based on the specifications so that should be made clear. Signed-off-by: Ivo van Doorn <IvDoorn@gmail.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
9467d64b0e
commit
4b914dc049
@ -39,6 +39,12 @@ 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);
|
||||
}
|
||||
|
||||
@ -46,6 +52,12 @@ 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);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user