Skip to content

Commit

Permalink
i2c: tegra: remove unnecessary variable init
Browse files Browse the repository at this point in the history
Remove variable initializations in functions that
are followed by assignments before use

Signed-off-by: Bitan Biswas <[email protected]>
Reviewed-by: Dmitry Osipenko <[email protected]>
Signed-off-by: Wolfram Sang <[email protected]>
  • Loading branch information
Bitan Biswas authored and Wolfram Sang committed Jun 12, 2019
1 parent c84663c commit 233d0ab
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions drivers/i2c/busses/i2c-tegra.c
Original file line number Diff line number Diff line change
Expand Up @@ -689,7 +689,7 @@ static int tegra_i2c_init(struct tegra_i2c_dev *i2c_dev, bool clk_reinit)
u32 val;
int err;
u32 clk_divisor, clk_multiplier;
u32 tsu_thd = 0;
u32 tsu_thd;
u8 tlow, thigh;

err = pm_runtime_get_sync(i2c_dev->dev);
Expand Down Expand Up @@ -1218,7 +1218,7 @@ static int tegra_i2c_xfer(struct i2c_adapter *adap, struct i2c_msg msgs[],
{
struct tegra_i2c_dev *i2c_dev = i2c_get_adapdata(adap);
int i;
int ret = 0;
int ret;

ret = pm_runtime_get_sync(i2c_dev->dev);
if (ret < 0) {
Expand Down Expand Up @@ -1489,7 +1489,7 @@ static int tegra_i2c_probe(struct platform_device *pdev)
void __iomem *base;
phys_addr_t base_phys;
int irq;
int ret = 0;
int ret;

res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
base_phys = res->start;
Expand Down

0 comments on commit 233d0ab

Please sign in to comment.