mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-15 17:34:43 +00:00
drivers: i2c: Remove duplicate newlines
Drop all duplicate newlines. No functional change. Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org> Reviewed-by: Heiko Schocher <hs@denx.de>
This commit is contained in:
parent
632ba2bd5c
commit
03b236a32b
7 changed files with 0 additions and 7 deletions
|
@ -76,7 +76,6 @@ DECLARE_GLOBAL_DATA_PTR;
|
||||||
HSI2C_TRANS_ABORT)
|
HSI2C_TRANS_ABORT)
|
||||||
#define HSI2C_TRANS_FINISHED_MASK (HSI2C_TRANS_ERROR_MASK | HSI2C_TRANS_SUCCESS)
|
#define HSI2C_TRANS_FINISHED_MASK (HSI2C_TRANS_ERROR_MASK | HSI2C_TRANS_SUCCESS)
|
||||||
|
|
||||||
|
|
||||||
/* I2C_FIFO_STAT Register bits */
|
/* I2C_FIFO_STAT Register bits */
|
||||||
#define HSI2C_RX_FIFO_EMPTY (1u << 24)
|
#define HSI2C_RX_FIFO_EMPTY (1u << 24)
|
||||||
#define HSI2C_RX_FIFO_FULL (1u << 23)
|
#define HSI2C_RX_FIFO_FULL (1u << 23)
|
||||||
|
|
|
@ -198,7 +198,6 @@ static int uniphier_i2c_set_bus_speed(struct udevice *bus, unsigned int speed)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static const struct dm_i2c_ops uniphier_i2c_ops = {
|
static const struct dm_i2c_ops uniphier_i2c_ops = {
|
||||||
.xfer = uniphier_i2c_xfer,
|
.xfer = uniphier_i2c_xfer,
|
||||||
.set_bus_speed = uniphier_i2c_set_bus_speed,
|
.set_bus_speed = uniphier_i2c_set_bus_speed,
|
||||||
|
|
|
@ -263,7 +263,6 @@ static int bus_i2c_write(struct udevice *bus, u32 chip, u8 *buf, int len)
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
u32 __weak imx_get_i2cclk(u32 i2c_num)
|
u32 __weak imx_get_i2cclk(u32 i2c_num)
|
||||||
{
|
{
|
||||||
return 0;
|
return 0;
|
||||||
|
|
|
@ -38,7 +38,6 @@ struct i2c_mux_gpio_priv {
|
||||||
u32 idle;
|
u32 idle;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
static int i2c_mux_gpio_select(struct udevice *dev, struct udevice *bus,
|
static int i2c_mux_gpio_select(struct udevice *dev, struct udevice *bus,
|
||||||
uint channel)
|
uint channel)
|
||||||
{
|
{
|
||||||
|
|
|
@ -512,7 +512,6 @@ static int i2c_init_transfer(struct mxc_i2c_bus *i2c_bus, u8 chip,
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static int i2c_write_data(struct mxc_i2c_bus *i2c_bus, u8 chip, const u8 *buf,
|
static int i2c_write_data(struct mxc_i2c_bus *i2c_bus, u8 chip, const u8 *buf,
|
||||||
int len)
|
int len)
|
||||||
{
|
{
|
||||||
|
|
|
@ -54,7 +54,6 @@
|
||||||
#define RCAR_I2C_ICFBSCR 0x38
|
#define RCAR_I2C_ICFBSCR 0x38
|
||||||
#define RCAR_I2C_ICFBSCR_TCYC17 0x0f /* 17*Tcyc */
|
#define RCAR_I2C_ICFBSCR_TCYC17 0x0f /* 17*Tcyc */
|
||||||
|
|
||||||
|
|
||||||
enum rcar_i2c_type {
|
enum rcar_i2c_type {
|
||||||
RCAR_I2C_TYPE_GEN2,
|
RCAR_I2C_TYPE_GEN2,
|
||||||
RCAR_I2C_TYPE_GEN3,
|
RCAR_I2C_TYPE_GEN3,
|
||||||
|
|
|
@ -96,7 +96,6 @@ DECLARE_GLOBAL_DATA_PTR;
|
||||||
#define I2C_ACK 0 /* PD_SDA level to ack a byte */
|
#define I2C_ACK 0 /* PD_SDA level to ack a byte */
|
||||||
#define I2C_NOACK 1 /* PD_SDA level to noack a byte */
|
#define I2C_NOACK 1 /* PD_SDA level to noack a byte */
|
||||||
|
|
||||||
|
|
||||||
#ifdef DEBUG_I2C
|
#ifdef DEBUG_I2C
|
||||||
#define PRINTD(fmt,args...) do { \
|
#define PRINTD(fmt,args...) do { \
|
||||||
printf (fmt ,##args); \
|
printf (fmt ,##args); \
|
||||||
|
|
Loading…
Add table
Reference in a new issue