Minor stylistic corrections

This commit is contained in:
Gregory Nutt 2016-08-14 10:14:28 -06:00
parent 4b582f0ae9
commit 014b8268cc
2 changed files with 11 additions and 13 deletions

3
TODO
View File

@ -927,8 +927,7 @@ o Network (net/, drivers/net)
CONFIG_NET_NOINTS). This is really a very bad use of CPU CONFIG_NET_NOINTS). This is really a very bad use of CPU
resources; All of the network stack processing should be resources; All of the network stack processing should be
modified to use a work queue (and, all use of CONFIG_NET_NOINTS=n modified to use a work queue (and, all use of CONFIG_NET_NOINTS=n
should be eliminated). This applies to almost all Ethernet should be eliminated). This applies to many Ethernet drivers:
drivers:
ARCHITECTURE CONFIG_NET_NOINTS? ADDRESS FILTER SUPPORT? ARCHITECTURE CONFIG_NET_NOINTS? ADDRESS FILTER SUPPORT?
C5471 NO NO C5471 NO NO

View File

@ -111,13 +111,7 @@ struct kinetis_i2cdev_s
}; };
/**************************************************************************** /****************************************************************************
* Private Data * Private Function Prototypes
****************************************************************************/
static struct kinetis_i2cdev_s g_i2c_dev;
/****************************************************************************
* Private Functions
****************************************************************************/ ****************************************************************************/
static int kinetis_i2c_start(struct kinetis_i2cdev_s *priv); static int kinetis_i2c_start(struct kinetis_i2cdev_s *priv);
@ -133,10 +127,10 @@ static int kinetis_i2c_reset(FAR struct i2c_master_s *dev);
#endif #endif
/**************************************************************************** /****************************************************************************
* I2C device operations * Private Data
****************************************************************************/ ****************************************************************************/
struct i2c_ops_s kinetis_i2c_ops = static const struct i2c_ops_s g_i2c_ops =
{ {
.transfer = kinetis_i2c_transfer .transfer = kinetis_i2c_transfer
#ifdef CONFIG_I2C_RESET #ifdef CONFIG_I2C_RESET
@ -144,6 +138,12 @@ struct i2c_ops_s kinetis_i2c_ops =
#endif #endif
}; };
static struct kinetis_i2cdev_s g_i2c_dev;
/****************************************************************************
* Private Functions
****************************************************************************/
/**************************************************************************** /****************************************************************************
* Name: kinetis_i2c_setfrequency * Name: kinetis_i2c_setfrequency
* *
@ -575,7 +575,6 @@ static int kinetis_i2c_interrupt(int irq, FAR void *context)
/* Clear interrupt */ /* Clear interrupt */
putreg8(I2C_S_IICIF, KINETIS_I2C0_S); putreg8(I2C_S_IICIF, KINETIS_I2C0_S);
regval = getreg8(KINETIS_I2C0_C1); regval = getreg8(KINETIS_I2C0_C1);
/* TX mode */ /* TX mode */
@ -862,7 +861,7 @@ struct i2c_master_s *kinetis_i2cbus_initialize(int port)
/* Install our operations */ /* Install our operations */
priv->dev.ops = &kinetis_i2c_ops; priv->dev.ops = &g_i2c_ops;
return &priv->dev; return &priv->dev;
} }