aboutsummaryrefslogtreecommitdiff
path: root/src/soc/samsung/exynos5420/i2c.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/soc/samsung/exynos5420/i2c.c')
-rw-r--r--src/soc/samsung/exynos5420/i2c.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/soc/samsung/exynos5420/i2c.c b/src/soc/samsung/exynos5420/i2c.c
index 45657f13cf..ab17d52c44 100644
--- a/src/soc/samsung/exynos5420/i2c.c
+++ b/src/soc/samsung/exynos5420/i2c.c
@@ -71,7 +71,6 @@ struct i2c_bus
unsigned int clk_div;
};
-
static struct i2c_bus i2c_busses[] = {
{
.bus_num = 0,
@@ -236,9 +235,6 @@ enum {
I2cStatMasterXmit = 0x3 << 6
};
-
-
-
static int hsi2c_get_clk_details(struct i2c_bus *i2c, int *div, int *cycle,
unsigned int op_clk)
{
@@ -487,9 +483,6 @@ static int hsi2c_transfer(struct i2c_bus *i2c, struct i2c_msg *segments,
return 0;
}
-
-
-
static int i2c_int_pending(struct i2c_regs *regs)
{
return read8(&regs->con) & I2cConIntPending;
@@ -539,9 +532,6 @@ static int i2c_wait_for_int(struct i2c_regs *regs)
return 1;
}
-
-
-
static int i2c_send_stop(struct i2c_regs *regs)
{
uint8_t mode = read8(&regs->stat) & (I2cStatModeMask);