diff options
author | Ed Nash <enash54@gmail.com> | 2013-07-27 23:23:52 -0400 |
---|---|---|
committer | Anthony Felice <tony.felice@timesys.com> | 2013-10-09 12:56:37 -0400 |
commit | d95bcb2a885302bfab1eab489e692e5ddb90ec33 (patch) | |
tree | 1852535bacc07a1b673f8dfd4a9fe0868caa8e85 | |
parent | 2be74c0a9a3b7a2eeb2076c2146ea5218b4e0a41 (diff) |
fix gate number constant
-rw-r--r-- | drivers/i2c/busses/i2c-imx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/i2c/busses/i2c-imx.c b/drivers/i2c/busses/i2c-imx.c index 8cc086247245..b165d9296522 100644 --- a/drivers/i2c/busses/i2c-imx.c +++ b/drivers/i2c/busses/i2c-imx.c @@ -441,7 +441,7 @@ static int i2c_imx_xfer(struct i2c_adapter *adapter, // since this can get called before probe, assign happens here if(!sema4) { - result = mvf_sema4_assign(MCC_I2C_SEMAPHORE_NUMBER, true, &sema4); + result = mvf_sema4_assign(MVF_I2C_SEMAPHORE_NUMBER, true, &sema4); if(result) { printk(KERN_ERR "can't assign sema4 %s %s exiting.\n",__FILE__,__func__); return result; |