On Tue, Apr 30, 2024 at 7:44 PM Tom Rini <tr...@konsulko.com> wrote: > > Remove <common.h> from this board vendor directory and when needed > add missing include files directly. > > Signed-off-by: Tom Rini <tr...@konsulko.com> > --- > Cc: Tim Harvey <thar...@gateworks.com> > --- > board/gateworks/gw_ventana/common.c | 1 - > board/gateworks/gw_ventana/eeprom.c | 1 - > board/gateworks/gw_ventana/gw_ventana.c | 1 - > board/gateworks/gw_ventana/gw_ventana_spl.c | 2 +- > board/gateworks/venice/eeprom.c | 1 - > board/gateworks/venice/lpddr4_timing_imx8mm.c | 1 - > board/gateworks/venice/spl.c | 1 - > 7 files changed, 1 insertion(+), 7 deletions(-) > > diff --git a/board/gateworks/gw_ventana/common.c > b/board/gateworks/gw_ventana/common.c > index 74328b2e1b31..891d1b5ddcaa 100644 > --- a/board/gateworks/gw_ventana/common.c > +++ b/board/gateworks/gw_ventana/common.c > @@ -5,7 +5,6 @@ > * Author: Tim Harvey <thar...@gateworks.com> > */ > > -#include <common.h> > #include <env.h> > #include <fsl_esdhc_imx.h> > #include <hwconfig.h> > diff --git a/board/gateworks/gw_ventana/eeprom.c > b/board/gateworks/gw_ventana/eeprom.c > index e622a9ba9e4d..b37f19722491 100644 > --- a/board/gateworks/gw_ventana/eeprom.c > +++ b/board/gateworks/gw_ventana/eeprom.c > @@ -5,7 +5,6 @@ > */ > > #include <command.h> > -#include <common.h> > #include <gsc.h> > #include <hexdump.h> > #include <i2c.h> > diff --git a/board/gateworks/gw_ventana/gw_ventana.c > b/board/gateworks/gw_ventana/gw_ventana.c > index 683def7e9f71..21a908c20dd5 100644 > --- a/board/gateworks/gw_ventana/gw_ventana.c > +++ b/board/gateworks/gw_ventana/gw_ventana.c > @@ -6,7 +6,6 @@ > */ > > #include <command.h> > -#include <common.h> > #include <fdt_support.h> > #include <gsc.h> > #include <hwconfig.h> > diff --git a/board/gateworks/gw_ventana/gw_ventana_spl.c > b/board/gateworks/gw_ventana/gw_ventana_spl.c > index 2f046c9c0b3e..3de4727b2edf 100644 > --- a/board/gateworks/gw_ventana/gw_ventana_spl.c > +++ b/board/gateworks/gw_ventana/gw_ventana_spl.c > @@ -4,7 +4,7 @@ > * Author: Tim Harvey <thar...@gateworks.com> > */ > > -#include <common.h> > +#include <config.h> > #include <env.h> > #include <gsc.h> > #include <hang.h> > diff --git a/board/gateworks/venice/eeprom.c b/board/gateworks/venice/eeprom.c > index 241be4ee630b..afaabf348793 100644 > --- a/board/gateworks/venice/eeprom.c > +++ b/board/gateworks/venice/eeprom.c > @@ -3,7 +3,6 @@ > * Copyright 2021 Gateworks Corporation > */ > > -#include <common.h> > #include <gsc.h> > #include <hexdump.h> > #include <i2c.h> > diff --git a/board/gateworks/venice/lpddr4_timing_imx8mm.c > b/board/gateworks/venice/lpddr4_timing_imx8mm.c > index 78b431dc2844..3f2c090a94fc 100644 > --- a/board/gateworks/venice/lpddr4_timing_imx8mm.c > +++ b/board/gateworks/venice/lpddr4_timing_imx8mm.c > @@ -6,7 +6,6 @@ > */ > > #include <linux/kernel.h> > -#include <common.h> > #include <asm/arch/ddr.h> > #include <asm/arch/lpddr4_define.h> > > diff --git a/board/gateworks/venice/spl.c b/board/gateworks/venice/spl.c > index b0a315ba9531..f10d310a46d4 100644 > --- a/board/gateworks/venice/spl.c > +++ b/board/gateworks/venice/spl.c > @@ -3,7 +3,6 @@ > * Copyright 2021 Gateworks Corporation > */ > > -#include <common.h> > #include <cpu_func.h> > #include <hang.h> > #include <i2c.h> > -- > 2.34.1 >
Acked-By: Tim Harvey <thar...@gateworks.com> Tim