Java程序辅导

C C++ Java Python Processing编程在线培训 程序编写 软件开发 视频讲解

客服在线QQ:2653320439 微信:ittutor Email:itutor@qq.com
wx: cjtutor
QQ: 2653320439
Linux-Kernel Archive: [PATCH 5.17 001/298] pcmcia: db1xxx_ss: restrict to MIPS_DB1XXX boards [PATCH 5.17 001/298] pcmcia: db1xxx_ss: restrict to MIPS_DB1XXX boards From: Greg Kroah-Hartman Date: Mon Jun 13 2022 - 10:11:38 EST Next message: Greg Kroah-Hartman: "[PATCH 5.18 325/339] mm/huge_memory: Fix xarray node memory leak" Previous message: Greg Kroah-Hartman: "[PATCH 5.18 333/339] virtio-rng: make device ready before making request" In reply to: Greg Kroah-Hartman: "[PATCH 5.17 000/298] 5.17.15-rc1 review" Next in thread: Greg Kroah-Hartman: "[PATCH 5.17 002/298] staging: greybus: codecs: fix type confusion of list iterator variable" Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] From: Randy Dunlap [ Upstream commit 3928cf08334ed895a31458cbebd8d4ec6d84c080 ] When the MIPS_ALCHEMY board selection is MIPS_XXS1500 instead of MIPS_DB1XXX, the PCMCIA driver 'db1xxx_ss' has build errors due to missing DB1XXX symbols. The PCMCIA driver should be restricted to MIPS_DB1XXX instead of MIPS_ALCHEMY to fix this build error. ERROR: modpost: "bcsr_read" [drivers/pcmcia/db1xxx_ss.ko] undefined! ERROR: modpost: "bcsr_mod" [drivers/pcmcia/db1xxx_ss.ko] undefined! Fixes: 42a4f17dc356 ("MIPS: Alchemy: remove SOC_AU1X00 in favor of MIPS_ALCHEMY") Signed-off-by: Randy Dunlap Reported-by: kernel test robot Cc: Arnd Bergmann Cc: Daniel Vetter Cc: Kees Cook Cc: Thomas Bogendoerfer Cc: linux-mips@xxxxxxxxxxxxxxx Acked-by: Manuel Lauss Signed-off-by: Dominik Brodowski Signed-off-by: Sasha Levin --- drivers/pcmcia/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/pcmcia/Kconfig b/drivers/pcmcia/Kconfig index ab53eab635f6..1740a63b814d 100644 --- a/drivers/pcmcia/Kconfig +++ b/drivers/pcmcia/Kconfig @@ -151,7 +151,7 @@ config TCIC config PCMCIA_ALCHEMY_DEVBOARD tristate "Alchemy Db/Pb1xxx PCMCIA socket services" - depends on MIPS_ALCHEMY && PCMCIA + depends on MIPS_DB1XXX && PCMCIA help Enable this driver of you want PCMCIA support on your Alchemy Db1000, Db/Pb1100, Db/Pb1500, Db/Pb1550, Db/Pb1200, DB1300 -- 2.35.1 Next message: Greg Kroah-Hartman: "[PATCH 5.18 325/339] mm/huge_memory: Fix xarray node memory leak" Previous message: Greg Kroah-Hartman: "[PATCH 5.18 333/339] virtio-rng: make device ready before making request" In reply to: Greg Kroah-Hartman: "[PATCH 5.17 000/298] 5.17.15-rc1 review" Next in thread: Greg Kroah-Hartman: "[PATCH 5.17 002/298] staging: greybus: codecs: fix type confusion of list iterator variable" Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]