Commit b3aafe80 authored by Roland Stigge's avatar Roland Stigge Committed by Wolfram Sang

i2c: pnx: Fix bit definitions

The I2C Control Register bits RFDAIE and RFFIE were mixed up. In addition to
this fix, this patch adds the missing bit DRSIE for completeness.
Signed-off-by: default avatarRoland Stigge <stigge@antcom.de>
Signed-off-by: default avatarWolfram Sang <w.sang@pengutronix.de>
parent 55d512e2
...@@ -48,8 +48,9 @@ enum { ...@@ -48,8 +48,9 @@ enum {
mcntrl_afie = 0x00000002, mcntrl_afie = 0x00000002,
mcntrl_naie = 0x00000004, mcntrl_naie = 0x00000004,
mcntrl_drmie = 0x00000008, mcntrl_drmie = 0x00000008,
mcntrl_daie = 0x00000020, mcntrl_drsie = 0x00000010,
mcntrl_rffie = 0x00000040, mcntrl_rffie = 0x00000020,
mcntrl_daie = 0x00000040,
mcntrl_tffie = 0x00000080, mcntrl_tffie = 0x00000080,
mcntrl_reset = 0x00000100, mcntrl_reset = 0x00000100,
mcntrl_cdbmode = 0x00000400, mcntrl_cdbmode = 0x00000400,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment