All of lore.kernel.org
 help / color / mirror / Atom feed
* [parisc-linux] "Config.in" File in linux/drivers/char has a bug !
@ 2002-08-11 17:03 Christoph Plattner
  0 siblings, 0 replies; only message in thread
From: Christoph Plattner @ 2002-08-11 17:03 UTC (permalink / raw)
  To: parisc-linux@lists.parisc-linux.org

Hello PA-RISC community !

After this CVS update, I could not find my PDC_CONSOLE
driver to configure any more. I think, the part 

   if [ "$CONFIG_PARISC" = "y" ]; then
     bool '  PDC software console support' CONFIG_PDC_CONSOLE
   fi

is inserted at a wrong place, it is nested with the

if [ "$CONFIG_FOOTBRIDGE" = "y" ]; then
	:
	:
fi

... which is wrong for HP PDC console.
Or do I not understand the "FOOTBRIDGE" stuff ?

So the fix should be:

Index: drivers/char/Config.in
===================================================================
RCS file: /var/cvs/linux/drivers/char/Config.in,v
retrieving revision 1.23
diff -u -r1.23 Config.in
--- drivers/char/Config.in      4 Aug 2002 22:58:10 -0000       1.23
+++ drivers/char/Config.in      11 Aug 2002 17:03:04 -0000
@@ -114,9 +114,9 @@
          bool '        Enable Au1000 serial console'
CONFIG_AU1000_SERIAL_CONSOLE
      fi
    fi
-   if [ "$CONFIG_PARISC" = "y" ]; then
-     bool '  PDC software console support' CONFIG_PDC_CONSOLE
-   fi
+fi
+if [ "$CONFIG_PARISC" = "y" ]; then
+   bool '  PDC software console support' CONFIG_PDC_CONSOLE
 fi
 if [ "$CONFIG_MIPS_ITE8172" = "y" ]; then
    bool 'Enable Qtronix 990P Keyboard Support' CONFIG_QTRONIX_KEYBOARD


With friendly regards
Christoph P

-- 
-------------------------------------------------------
private:	christoph.plattner@gmx.at
company:	christoph.plattner@alcatel.at

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2002-08-11 17:04 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-08-11 17:03 [parisc-linux] "Config.in" File in linux/drivers/char has a bug ! Christoph Plattner

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.