[PATCH] i2c: npcm7xx: Remove unnecessary parentheses

From: Gustavo A. R. Silva
Date: Thu Jun 04 2020 - 11:34:56 EST


Remove unnecessary parentheses around _bus_.

This issue was found with the help of Coccinelle.

Signed-off-by: Gustavo A. R. Silva <gustavoars@xxxxxxxxxx>
---
drivers/i2c/busses/i2c-npcm7xx.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/i2c/busses/i2c-npcm7xx.c b/drivers/i2c/busses/i2c-npcm7xx.c
index a8e75c3484f12..68951a293aae3 100644
--- a/drivers/i2c/busses/i2c-npcm7xx.c
+++ b/drivers/i2c/busses/i2c-npcm7xx.c
@@ -2248,7 +2248,7 @@ static int npcm_i2c_probe_bus(struct platform_device *pdev)

bus->reg = devm_platform_ioremap_resource(pdev, 0);
if (IS_ERR(bus->reg))
- return PTR_ERR((bus)->reg);
+ return PTR_ERR(bus->reg);

spin_lock_init(&bus->lock);
init_completion(&bus->cmd_complete);
--
2.27.0