Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

nfc: mrvl: Don't use "proxy" headers

Update header inclusions to follow IWYU (Include What You Use)
principle.

In this case replace of_gpio.h, which is subject to remove by the GPIOLIB
subsystem, with the respective headers that are being used by the driver.

Acked-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Link: https://patch.msgid.link/20250116153119.148097-1-andriy.shevchenko@linux.intel.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>

authored by

Andy Shevchenko and committed by
Jakub Kicinski
a26892ee 33b5c84a

+7 -2
+7 -2
drivers/nfc/nfcmrvl/uart.c
··· 5 5 * Copyright (C) 2015, Marvell International Ltd. 6 6 */ 7 7 8 - #include <linux/module.h> 9 8 #include <linux/delay.h> 10 - #include <linux/of_gpio.h> 9 + #include <linux/device.h> 10 + #include <linux/err.h> 11 + #include <linux/module.h> 12 + #include <linux/of.h> 13 + #include <linux/printk.h> 14 + 11 15 #include <net/nfc/nci.h> 12 16 #include <net/nfc/nci_core.h> 17 + 13 18 #include "nfcmrvl.h" 14 19 15 20 static unsigned int hci_muxed;