From: Heiner Kallweit Date: Sat, 25 Mar 2017 10:24:41 +0000 (+0100) Subject: mmc: meson-gx: use per port interrupt names X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=f016c67629c818ca6a39f4d6e35d85d9e930eacc;p=linux.git mmc: meson-gx: use per port interrupt names So far the driver name is used as interrupt description, therefore in /proc/interrupts it's not possible to tell which interrupt belongs to which port. Change this by switching to NULL what causes the default (device name) to be used. In our case that's the DT node name. Signed-off-by: Heiner Kallweit Reviewed-by: Kevin Hilman Signed-off-by: Ulf Hansson --- diff --git a/drivers/mmc/host/meson-gx-mmc.c b/drivers/mmc/host/meson-gx-mmc.c index ab1f2d336ae2b..0a0f5008940b5 100644 --- a/drivers/mmc/host/meson-gx-mmc.c +++ b/drivers/mmc/host/meson-gx-mmc.c @@ -734,7 +734,7 @@ static int meson_mmc_probe(struct platform_device *pdev) ret = devm_request_threaded_irq(&pdev->dev, irq, meson_mmc_irq, meson_mmc_irq_thread, IRQF_SHARED, - DRIVER_NAME, host); + NULL, host); if (ret) goto err_div_clk;