diff options
author | Rob Herring <robh@kernel.org> | 2023-04-10 18:27:01 -0500 |
---|---|---|
committer | Kalle Valo <kvalo@kernel.org> | 2023-04-14 15:32:56 +0300 |
commit | 666f4ab26c2c7c5e1aa963dc5d8623df1b015d06 (patch) | |
tree | d4ad9a8a247800ea95b7f3527b085afc9028bdaa /drivers/bcma | |
parent | b9c3379dda1435110440bf9d6d230b3067e8f1d6 (diff) |
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 <robh@kernel.org>
Signed-off-by: Kalle Valo <kvalo@kernel.org>
Link: https://lore.kernel.org/r/20230410232701.1561613-1-robh@kernel.org
Diffstat (limited to 'drivers/bcma')
-rw-r--r-- | drivers/bcma/main.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/bcma/main.c b/drivers/bcma/main.c index 5e438f74ee4c..7061d3ee836a 100644 --- a/drivers/bcma/main.c +++ b/drivers/bcma/main.c @@ -14,6 +14,7 @@ #include <linux/slab.h> #include <linux/of_address.h> #include <linux/of_irq.h> +#include <linux/of_device.h> #include <linux/of_platform.h> MODULE_DESCRIPTION("Broadcom's specific AMBA driver"); |