Correct a typo in STM32 I2C3 support

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4345 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
patacongo 2012-01-29 14:15:20 +00:00
parent 61a8b3f9c4
commit e4f49aa49c
1 changed files with 1 additions and 1 deletions

View File

@ -1209,7 +1209,7 @@ static int stm32_i2c2_isr(int irq, void *context)
************************************************************************************/ ************************************************************************************/
#ifdef CONFIG_STM32_I2C3 #ifdef CONFIG_STM32_I2C3
static int stm32_i2c2_isr(int irq, void *context) static int stm32_i2c3_isr(int irq, void *context)
{ {
return stm32_i2c_isr(&stm32_i2c3_priv); return stm32_i2c_isr(&stm32_i2c3_priv);
} }