Message ID | 20200701113724.255226-3-wolfgang.wallner@br-automation.com |
---|---|
State | Accepted |
Commit | ce04a9020c41a2ebf1d85e01532da69d2d2e2119 |
Headers | show |
Series | x86: p2sb: P2SB fixes | expand |
On Wed, 1 Jul 2020 at 05:37, Wolfgang Wallner <wolfgang.wallner at br-automation.com> wrote: > > Currently it is possible to select the P2SB driver without selecting the > P2SB uclass, which can't work. Fix this by adding a "depends on" in > Kconfig. > > Signed-off-by: Wolfgang Wallner <wolfgang.wallner at br-automation.com> > > --- > > (no changes since v2) > > Changes in v2: > - Fixed cover letter > > arch/x86/Kconfig | 1 + > 1 file changed, 1 insertion(+) Reviewed-by: Simon Glass <sjg at chromium.org>
On Wed, Jul 1, 2020 at 7:37 PM Wolfgang Wallner <wolfgang.wallner at br-automation.com> wrote: > > Currently it is possible to select the P2SB driver without selecting the > P2SB uclass, which can't work. Fix this by adding a "depends on" in > Kconfig. > > Signed-off-by: Wolfgang Wallner <wolfgang.wallner at br-automation.com> > > --- > > (no changes since v2) > > Changes in v2: > - Fixed cover letter > > arch/x86/Kconfig | 1 + > 1 file changed, 1 insertion(+) > applied to u-boot-x86, thanks!
diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig index c8eae24c07..27295ef384 100644 --- a/arch/x86/Kconfig +++ b/arch/x86/Kconfig @@ -717,6 +717,7 @@ config HAVE_ITSS config HAVE_P2SB bool "Enable P2SB" + depends on P2SB help Select this to include the driver for the Primary to Sideband Bridge (P2SB) which is found on several Intel
Currently it is possible to select the P2SB driver without selecting the P2SB uclass, which can't work. Fix this by adding a "depends on" in Kconfig. Signed-off-by: Wolfgang Wallner <wolfgang.wallner at br-automation.com> --- (no changes since v2) Changes in v2: - Fixed cover letter arch/x86/Kconfig | 1 + 1 file changed, 1 insertion(+)