* [parisc-linux] Re: [parisc-linux-cvs] linux rhirst
[not found] <20020706222240.BFA2F484F@dsl2.external.hp.com>
@ 2002-07-06 21:27 ` Richard Hirst
2002-07-07 16:56 ` Ralf Hildebrandt
0 siblings, 1 reply; 4+ messages in thread
From: Richard Hirst @ 2002-07-06 21:27 UTC (permalink / raw)
To: parisc-linux; +Cc: parisc-linux-cvs
On Sat, Jul 06, 2002 at 04:22:40PM -0600, Richard Hirst wrote:
> Make power switch work on 712 again
RCS file: /var/cvs/linux/arch/parisc/kernel/time.c,v
retrieving revision 1.24
diff -u -r1.24 time.c
--- arch/parisc/kernel/time.c 2002/06/26 22:20:32 1.24
+++ arch/parisc/kernel/time.c 2002/07/06 22:21:58
@@ -116,7 +116,7 @@
#endif
/* check soft power switch status */
- if (cpu == 0 && !atomic_read(&led_tasklet.count))
+ if (cpu == 0 && !atomic_read(&power_tasklet.count))
tasklet_schedule(&power_tasklet);
}
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [parisc-linux] Re: [parisc-linux-cvs] linux rhirst
2002-07-06 21:27 ` [parisc-linux] Re: [parisc-linux-cvs] linux rhirst Richard Hirst
@ 2002-07-07 16:56 ` Ralf Hildebrandt
2002-07-07 19:09 ` Ralf Hildebrandt
0 siblings, 1 reply; 4+ messages in thread
From: Ralf Hildebrandt @ 2002-07-07 16:56 UTC (permalink / raw)
To: Richard Hirst; +Cc: parisc-linux
On Sat, Jul 06, 2002 at 10:27:52PM +0100, Richard Hirst wrote:
> On Sat, Jul 06, 2002 at 04:22:40PM -0600, Richard Hirst wrote:
> > Make power switch work on 712 again
I'll give it a spin.
--
Ralf Hildebrandt (Im Auftrag des Referat V A) Ralf.Hildebrandt@charite.de
Charite Campus Virchow-Klinikum Tel. +49 (0)30-450 570-155
Referat V A - Kommunikationsnetze - Fax. +49 (0)30-450 570-916
Ich habe manchmal den Eindruck, dass ein Telefon wesentlich komplizierter
zu bedienen ist als beispielsweise der ed(1). Vergleich doch einfach mal
"man ed" mit der Gebrauchsanleitung fuer ein modernes Telefon.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [parisc-linux] Re: [parisc-linux-cvs] linux rhirst
2002-07-07 16:56 ` Ralf Hildebrandt
@ 2002-07-07 19:09 ` Ralf Hildebrandt
0 siblings, 0 replies; 4+ messages in thread
From: Ralf Hildebrandt @ 2002-07-07 19:09 UTC (permalink / raw)
To: parisc-linux
Am 07.07.2002 um 18:56:23 +0200 schrieb Ralf Hildebrandt folgendes:
> On Sat, Jul 06, 2002 at 10:27:52PM +0100, Richard Hirst wrote:
> > On Sat, Jul 06, 2002 at 04:22:40PM -0600, Richard Hirst wrote:
> > > Make power switch work on 712 again
>
> I'll give it a spin.
Works.
--
Ralf Hildebrandt (Im Auftrag des Referat V A) Ralf.Hildebrandt@charite.de
Charite Campus Virchow-Klinikum Tel. +49 (0)30-450 570-155
Referat V A - Kommunikationsnetze - Fax. +49 (0)30-450 570-916
There are no viruses.
It's antibodies against people too stupid to survive on the Internet.
^ permalink raw reply [flat|nested] 4+ messages in thread
* [parisc-linux] Re: [parisc-linux-cvs] linux rhirst
[not found] <20020719225302.874944839@dsl2.external.hp.com>
@ 2002-07-19 22:19 ` Richard Hirst
0 siblings, 0 replies; 4+ messages in thread
From: Richard Hirst @ 2002-07-19 22:19 UTC (permalink / raw)
To: parisc-linux
On Fri, Jul 19, 2002 at 04:53:02PM -0600, Richard Hirst wrote:
> CVSROOT: /var/cvs
> Module name: linux
> Changes by: rhirst 02/07/19 16:53:02
>
> Modified files:
> . : Makefile
> drivers/scsi : Config.in
>
> Log message:
> Fix scsi config options so Zalon can be used without PCI
This is a mess, btw. Basic problem is Zalon, ncr53c8xx, and sym53c8xx
want to share a bunch of config options. But zalon can run without
pci, the other two can't. ncr and sym are not allowed if sym_2 is
compiled in, but zalon is, etc, etc. Cleaner solutions are welcomed!
Richard
Index: drivers/scsi/Config.in
===================================================================
RCS file: /var/cvs/linux/drivers/scsi/Config.in,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- drivers/scsi/Config.in 4 Jun 2002 18:53:29 -0000 1.18
+++ drivers/scsi/Config.in 19 Jul 2002 22:53:02 -0000 1.19
@@ -147,27 +147,46 @@
bool ' use normal IO' CONFIG_SCSI_SYM53C8XX_IOMAPPED
fi
fi
+define_bool CONFIG_ASK_ZALON n
+define_bool CONFIG_ASK_NCR53C8XX n
+define_bool CONFIG_ASK_SYM53C8XX n
+if [ "$CONFIG_PARISC" = "y" ]; then
+ dep_tristate 'Zalon SCSI support' CONFIG_SCSI_ZALON $CONFIG_GSC $CONFIG_SCSI
+ if [ "$CONFIG_SCSI_ZALON" != "n" ]; then
+ define_bool CONFIG_ASK_ZALON y
+ fi
+else
+ if [ "$CONFIG_PCI" = "y" -a "$CONFIG_SCSI_SYM53C8XX_2" != "y" ]; then
+ dep_tristate 'NCR53C8XX SCSI support' CONFIG_SCSI_NCR53C8XX $CONFIG_SCSI
+ if [ "$CONFIG_SCSI_NCR53C8XX" != "n" ]; then
+ define_bool CONFIG_ASK_NCR53C8XX y
+ fi
+ fi
+fi
if [ "$CONFIG_PCI" = "y" -a "$CONFIG_SCSI_SYM53C8XX_2" != "y" ]; then
- dep_tristate 'NCR53C8XX SCSI support' CONFIG_SCSI_NCR53C8XX $CONFIG_SCSI
dep_tristate 'SYM53C8XX SCSI support' CONFIG_SCSI_SYM53C8XX $CONFIG_SCSI
- if [ "$CONFIG_PARISC" = "y" ]; then
- dep_tristate 'Zalon SCSI support' CONFIG_SCSI_ZALON $CONFIG_GSC $CONFIG_SCSI
+ if [ "$CONFIG_SCSI_SYM53C8XX" != "n" ]; then
+ define_bool CONFIG_ASK_SYM53C8XX y
fi
- if [ "$CONFIG_SCSI_NCR53C8XX" != "n" -o "$CONFIG_SCSI_ZALON" != "n" -o "$CONFIG_SCSI_SYM53C8XX" != "n" ]; then
- int ' default tagged command queue depth' CONFIG_SCSI_NCR53C8XX_DEFAULT_TAGS 8
- int ' maximum number of queued commands' CONFIG_SCSI_NCR53C8XX_MAX_TAGS 32
- int ' synchronous transfers frequency in MHz' CONFIG_SCSI_NCR53C8XX_SYNC 20
- bool ' enable profiling' CONFIG_SCSI_NCR53C8XX_PROFILE
+fi
+if [ "$CONFIG_ASK_ZALON" = "y" -o "$CONFIG_ASK_NCR53C8XX" = "y" -o "$CONFIG_ASK_SYM53C8XX" = "y" ]; then
+ int ' default tagged command queue depth' CONFIG_SCSI_NCR53C8XX_DEFAULT_TAGS 8
+ int ' maximum number of queued commands' CONFIG_SCSI_NCR53C8XX_MAX_TAGS 32
+ int ' synchronous transfers frequency in MHz' CONFIG_SCSI_NCR53C8XX_SYNC 20
+ bool ' enable profiling' CONFIG_SCSI_NCR53C8XX_PROFILE
+ if [ "$CONFIG_ASK_ZALON" = "y" ]; then
+ define_bool CONFIG_SCSI_NCR53C8XX_IOMAPPED n
+ else
bool ' use normal IO' CONFIG_SCSI_NCR53C8XX_IOMAPPED
- if [ "$CONFIG_SCSI_SYM53C8XX" != "n" ]; then
- bool ' include support for the NCR PQS/PDS SCSI card' CONFIG_SCSI_NCR53C8XX_PQS_PDS
- fi
- if [ "$CONFIG_SCSI_NCR53C8XX_DEFAULT_TAGS" = "0" ]; then
- bool ' not allow targets to disconnect' CONFIG_SCSI_NCR53C8XX_NO_DISCONNECT
- fi
- if [ "$CONFIG_EXPERIMENTAL" = "y" ]; then
- bool ' assume boards are SYMBIOS compatible (EXPERIMENTAL)' CONFIG_SCSI_NCR53C8XX_SYMBIOS_COMPAT
- fi
+ fi
+ if [ "$CONFIG_ASK_SYM53C8XX" = "y" ]; then
+ bool ' include support for the NCR PQS/PDS SCSI card' CONFIG_SCSI_NCR53C8XX_PQS_PDS
+ fi
+ if [ "$CONFIG_SCSI_NCR53C8XX_DEFAULT_TAGS" = "0" ]; then
+ bool ' not allow targets to disconnect' CONFIG_SCSI_NCR53C8XX_NO_DISCONNECT
+ fi
+ if [ "$CONFIG_EXPERIMENTAL" = "y" ]; then
+ bool ' assume boards are SYMBIOS compatible (EXPERIMENTAL)' CONFIG_SCSI_NCR53C8XX_SYMBIOS_COMPAT
fi
fi
if [ "$CONFIG_MCA" = "y" ]; then
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2002-07-19 23:21 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <20020706222240.BFA2F484F@dsl2.external.hp.com>
2002-07-06 21:27 ` [parisc-linux] Re: [parisc-linux-cvs] linux rhirst Richard Hirst
2002-07-07 16:56 ` Ralf Hildebrandt
2002-07-07 19:09 ` Ralf Hildebrandt
[not found] <20020719225302.874944839@dsl2.external.hp.com>
2002-07-19 22:19 ` Richard Hirst
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.