From: Rob Herring Date: Mon, 10 Apr 2023 23:27:01 +0000 (-0500) Subject: bcma: Add explicit of_device.h include X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=666f4ab26c2c7c5e1aa963dc5d8623df1b015d06;p=linux.git bcma: Add explicit of_device.h include bcma/main.c uses of_dma_configure() which is declared in of_device.h. of_device.h gets implicitly included by of_platform.h, but that is going to be removed soon. Signed-off-by: Rob Herring Signed-off-by: Kalle Valo Link: https://lore.kernel.org/r/20230410232701.1561613-1-robh@kernel.org --- diff --git a/drivers/bcma/main.c b/drivers/bcma/main.c index 5e438f74ee4cd..7061d3ee836a1 100644 --- a/drivers/bcma/main.c +++ b/drivers/bcma/main.c @@ -14,6 +14,7 @@ #include #include #include +#include #include MODULE_DESCRIPTION("Broadcom's specific AMBA driver");