Move per-transition delays from generic bit-bashing layer to i2c layer

(since SPI bit-bashing will require different delay semantics).
This commit is contained in:
Michael Brown
2006-06-14 00:20:35 +00:00
parent 714641ae6d
commit ab4f96e525
3 changed files with 15 additions and 10 deletions
-1
View File
@@ -38,7 +38,6 @@
void write_bit ( struct bit_basher *basher, unsigned int bit_id,
unsigned long data ) {
basher->write ( basher, bit_id, ( data ? -1UL : 0 ) );
udelay ( basher->udelay );
}
/**