diff options
author | Colin Foster <colin.foster@in-advantage.com> | 2021-12-09 08:40:10 +0100 |
---|---|---|
committer | Jakub Kicinski <kuba@kernel.org> | 2021-12-11 04:52:10 +0100 |
commit | 840ece19e9f246a1b15308ae76b68aaf7a3a9433 (patch) | |
tree | 07b1c292ea7005f4f1e79600a9435aaf5ce9f522 /include/soc | |
parent | net: bna: Update supported link modes (diff) | |
download | linux-840ece19e9f246a1b15308ae76b68aaf7a3a9433.tar.xz linux-840ece19e9f246a1b15308ae76b68aaf7a3a9433.zip |
net: ocelot: fix missed include in the vsc7514_regs.h file
commit 32ecd22ba60b ("net: mscc: ocelot: split register definitions to a
separate file") left out an include for <soc/mscc/ocelot_vcap.h>. It was
missed because the only consumer was ocelot_vsc7514.h, which already
included ocelot_vcap.
Fixes: 32ecd22ba60b ("net: mscc: ocelot: split register definitions to a separate file")
Signed-off-by: Colin Foster <colin.foster@in-advantage.com>
Reviewed-by: Florian Fainelli <f.fainelli@gmail.com>
Link: https://lore.kernel.org/r/20211209074010.1813010-1-colin.foster@in-advantage.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'include/soc')
-rw-r--r-- | include/soc/mscc/vsc7514_regs.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/soc/mscc/vsc7514_regs.h b/include/soc/mscc/vsc7514_regs.h index 98743e252012..ceee26c96959 100644 --- a/include/soc/mscc/vsc7514_regs.h +++ b/include/soc/mscc/vsc7514_regs.h @@ -8,6 +8,8 @@ #ifndef VSC7514_REGS_H #define VSC7514_REGS_H +#include <soc/mscc/ocelot_vcap.h> + extern const u32 vsc7514_ana_regmap[]; extern const u32 vsc7514_qs_regmap[]; extern const u32 vsc7514_qsys_regmap[]; |