diff options
author | Jens Arnold <amiconn@rockbox.org> | 2008-03-18 22:48:26 +0000 |
---|---|---|
committer | Jens Arnold <amiconn@rockbox.org> | 2008-03-18 22:48:26 +0000 |
commit | eb0a7a3318c35298a5ad777e5ebe10ec7ec2bc63 (patch) | |
tree | fcc0ba4e23dbbe81e5207b5c1ec03d76b02bdf8b /firmware/export | |
parent | 6deb9f31ffdd48e9d7ce0bd3515fc75658b8fa9b (diff) |
Correct the name of a flag. No functional change.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16708 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/export')
-rw-r--r-- | firmware/export/i2c-coldfire.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/export/i2c-coldfire.h b/firmware/export/i2c-coldfire.h index 544a3169cf..1fbf621467 100644 --- a/firmware/export/i2c-coldfire.h +++ b/firmware/export/i2c-coldfire.h @@ -57,7 +57,7 @@ void i2c_adjust_prescale(int multiplier); #define IBB (1 << 5) /* Bus Busy */ #define IAL (1 << 4) /* Arbitration Lost */ #define SRW (1 << 2) /* Slave R/W */ -#define IFF (1 << 1) /* I2C Interrupt */ +#define IIF (1 << 1) /* I2C Interrupt */ #define RXAK (1 << 0) /* No Ack bit */ /* MBCR - Control register */ |