diff options
author | Damien Le Moal <dlemoal@kernel.org> | 2023-06-15 09:19:51 +0900 |
---|---|---|
committer | Damien Le Moal <dlemoal@kernel.org> | 2023-06-15 09:23:56 +0900 |
commit | 00134556058c2c262b9d1cac25b73727f87f46f5 (patch) | |
tree | eee266632afacc959c98470299e807e0ad3bce15 /drivers/ata | |
parent | 9e936277d990552c955f4a20ad33d4cb1319b25b (diff) |
ata: pata_octeon_cf: Add missing header include
Include the header file linux/of_address.h to avoid compilation errors
triggered by of_property_read_reg() being undeclared.
Fixes: d0b2461678b1 ("ata: Use of_property_read_reg() to parse "reg"")
Reported-by: kernel test robot <lkp@intel.com>
Closes: https://lore.kernel.org/oe-kbuild-all/202306141702.ZaO9V2lk-lkp@intel.com/
Signed-off-by: Damien Le Moal <dlemoal@kernel.org>
Diffstat (limited to 'drivers/ata')
-rw-r--r-- | drivers/ata/pata_octeon_cf.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/ata/pata_octeon_cf.c b/drivers/ata/pata_octeon_cf.c index 57b2166a6d5d..ff538b858928 100644 --- a/drivers/ata/pata_octeon_cf.c +++ b/drivers/ata/pata_octeon_cf.c @@ -16,6 +16,7 @@ #include <linux/slab.h> #include <linux/irq.h> #include <linux/of.h> +#include <linux/of_address.h> #include <linux/of_platform.h> #include <linux/platform_device.h> #include <scsi/scsi_host.h> |