Add a some missing FAR in shared header files

This commit is contained in:
Gregory Nutt 2016-03-09 18:12:41 -06:00
parent 760fb63f33
commit 6a056479d2
2 changed files with 8 additions and 8 deletions

2
arch

@ -1 +1 @@
Subproject commit 0dfea1d68b55f7d8378d422eb4875acc59867077
Subproject commit 97d205c697886d4e28fbc785d373bb17541f11dd

View File

@ -171,7 +171,7 @@ struct i2c_config_s
{
uint32_t frequency; /* I2C frequency */
uint16_t address; /* I2C address (7- or 10-bit) */
uint8_t addrlen; /* I2C address length (7 or 10 bits) */
uint8_t addrlen; /* I2C address length (7 or 10 bits) */
};
/* I2C transaction segment beginning with a START. A number of these can
@ -181,11 +181,11 @@ struct i2c_config_s
struct i2c_msg_s
{
uint32_t frequency; /* I2C frequency */
uint16_t addr; /* Slave address (7- or 10-bit) */
uint16_t flags; /* See I2C_M_* definitions */
uint8_t *buffer; /* Buffer to be transferred */
ssize_t length; /* Length of the buffer in bytes */
uint32_t frequency; /* I2C frequency */
uint16_t addr; /* Slave address (7- or 10-bit) */
uint16_t flags; /* See I2C_M_* definitions */
FAR uint8_t *buffer; /* Buffer to be transferred */
ssize_t length; /* Length of the buffer in bytes */
};
/* I2C private data. This structure only defines the initial fields of the
@ -195,7 +195,7 @@ struct i2c_msg_s
struct i2c_master_s
{
const struct i2c_ops_s *ops; /* I2C vtable */
FAR const struct i2c_ops_s *ops; /* I2C vtable */
};
/* This structure is used to communicate with the I2C character driver in