summary refs log tree commit diff
path: root/drivers/i2c/busses
diff options
context:
space:
mode:
authorQii Wang <qii.wang@mediatek.com>2021-05-27 19:31:50 +0800
committerWolfram Sang <wsa@kernel.org>2021-05-27 22:12:46 +0200
commit7fb9dc8109bf9713ffcda65617249099a1942f0f (patch)
treeae900e2125d10d3476403b9514bb50788a1bd00e /drivers/i2c/busses
parent0d3f1e4524bb70f528b7002803fc0737c83ddd5e (diff)
downloadlinux-7fb9dc8109bf9713ffcda65617249099a1942f0f.tar.gz
i2c: mediatek: Rename i2c irq name
Rename i2c irq name with dev_name() which can provide unique
naming in /proc/interrupts for each instance of the I2C IP core.

Signed-off-by: Qii Wang <qii.wang@mediatek.com>
Signed-off-by: Wolfram Sang <wsa@kernel.org>
Diffstat (limited to 'drivers/i2c/busses')
-rw-r--r--drivers/i2c/busses/i2c-mt65xx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/i2c/busses/i2c-mt65xx.c b/drivers/i2c/busses/i2c-mt65xx.c
index 5ddfa4e56ee2..ea337ba46938 100644
--- a/drivers/i2c/busses/i2c-mt65xx.c
+++ b/drivers/i2c/busses/i2c-mt65xx.c
@@ -1281,7 +1281,7 @@ static int mtk_i2c_probe(struct platform_device *pdev)
 
 	ret = devm_request_irq(&pdev->dev, irq, mtk_i2c_irq,
 			       IRQF_NO_SUSPEND | IRQF_TRIGGER_NONE,
-			       I2C_DRV_NAME, i2c);
+			       dev_name(&pdev->dev), i2c);
 	if (ret < 0) {
 		dev_err(&pdev->dev,
 			"Request I2C IRQ %d fail\n", irq);