From 0b2985675b9bc9de98a57004f3a2bab23b0feb43 Mon Sep 17 00:00:00 2001 From: Greg Banks Date: Sun, 14 Jul 2002 22:58:55 -0700 Subject: [PATCH] [PATCH] PATCH 2.5: kconfig use of $ARCH (5_12) Use of the $ARCH variable is undocumented; the sparc and sparc64 ports define the bool constants CONFIG_SPARC32 and CONFIG_SPARC64 respectively for this purpose. --- drivers/isdn/hisax/Config.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/isdn/hisax/Config.in b/drivers/isdn/hisax/Config.in index 13513ff46649..6a303d4228ae 100644 --- a/drivers/isdn/hisax/Config.in +++ b/drivers/isdn/hisax/Config.in @@ -44,7 +44,7 @@ if [ "$CONFIG_ISDN_DRV_HISAX" != "n" ]; then if [ "$CONFIG_EXPERIMENTAL" != "n" ]; then # bool ' TESTEMULATOR (EXPERIMENTAL)' CONFIG_HISAX_TESTEMU bool ' Formula-n enter:now PCI card' CONFIG_HISAX_ENTERNOW_PCI - if [ "$ARCH" = "sparc" -o "$ARCH" = "sparc64" ]; then + if [ "$CONFIG_SPARC32" = "y" -o "$CONFIG_SPARC64" = "y" ]; then bool ' Am7930' CONFIG_HISAX_AMD7930 fi fi -- 2.39.5