On 8/26/23 09:12, Shyam Sundar S K wrote: > on x86_64: > > CONFIG_SUSPEND is not set > CONFIG_PM is not set > > this leads to build failure of the AMD PMC driver. Add a 'depends on' > in the Kconfig. > > Reported-by: Randy Dunlap <rdunlap@xxxxxxxxxxxxx> > Closes: https://lore.kernel.org/lkml/5181685c-29d8-22a4-a2d7-682f26e2e031@xxxxxxxxxxxxx/ > Signed-off-by: Shyam Sundar S K <Shyam-sundar.S-k@xxxxxxx> Tested-by: Randy Dunlap <rdunlap@xxxxxxxxxxxxx> Acked-by: Randy Dunlap <rdunlap@xxxxxxxxxxxxx> Thanks. > --- > > based on 'linux-next' > > drivers/platform/x86/amd/Kconfig | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/drivers/platform/x86/amd/Kconfig b/drivers/platform/x86/amd/Kconfig > index d9685aef0887..383ae4c1df00 100644 > --- a/drivers/platform/x86/amd/Kconfig > +++ b/drivers/platform/x86/amd/Kconfig > @@ -8,6 +8,7 @@ source "drivers/platform/x86/amd/pmf/Kconfig" > config AMD_PMC > tristate "AMD SoC PMC driver" > depends on ACPI && PCI && RTC_CLASS && AMD_NB > + depends on X86 && SUSPEND > select SERIO > help > The driver provides support for AMD Power Management Controller -- ~Randy