From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1760155AbXGVGf0 (ORCPT ); Sun, 22 Jul 2007 02:35:26 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1753089AbXGVGfO (ORCPT ); Sun, 22 Jul 2007 02:35:14 -0400 Received: from zeniv.linux.org.uk ([195.92.253.2]:34201 "EHLO ZenIV.linux.org.uk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752455AbXGVGfM (ORCPT ); Sun, 22 Jul 2007 02:35:12 -0400 Date: Sun, 22 Jul 2007 07:35:11 +0100 From: Al Viro To: David Miller Cc: linux-kernel@vger.kernel.org, sparclinux@vger.kernel.org, sam@ravnborg.org Subject: Re: [RFC] Kconfig fun with sparc32/sparc64 rtc drivers Message-ID: <20070722063511.GR21668@ftp.linux.org.uk> References: <20070722054356.GO21668@ftp.linux.org.uk> <20070721.225413.23605608.davem@davemloft.net> <20070722061924.GP21668@ftp.linux.org.uk> <20070721.232207.26531557.davem@davemloft.net> <20070722063149.GQ21668@ftp.linux.org.uk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20070722063149.GQ21668@ftp.linux.org.uk> User-Agent: Mutt/1.4.1i Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org On Sun, Jul 22, 2007 at 07:31:49AM +0100, Al Viro wrote: > On Sat, Jul 21, 2007 at 11:22:07PM -0700, David Miller wrote: > > From: Al Viro > > Date: Sun, 22 Jul 2007 07:19:24 +0100 > > > > > We probably ought to make drivers/sbus/char/rtc.c sparc32-only, > > > then - AFAICS it simply won't be able to register misc device and that > > > will be it. ACK? > > > > ACK. > > > > > > 2) all the __sparc_v9__ crap is removed from drivers/char/rtc.c > > > > 3) all the __sparc__ crap is changed to CONFIG_SPARC32 in same > > > > 4) CONFIG_RTC is not longer allows on sparc64, only sparc32 with PCI > > > > > > Umm... OK, that takes care of sparc64 side of things, which is probably > > > all we realistically care about. Except that it still leaves broken sparc32 > > > defconfig - we have RTC=m, SUN_MOSTEK_RTC=m and kbuild won't deal with it... > > > > That definitely needs to be fixed and I'm willing to entertain > > any suggestion on how to deal with it. > > Crude and simple way would be to add > > config JS_RTC > tristate "JavaStation RTC" > depends on SPARC32 && PCI > > > in drivers/char/Kconfig, slap plain and simple !SPARC in RTC dependencies > and put > js-rtc-y = rtc.o > obj-$(JS_RTC) += js-rtc.o > in drivers/char/Makefile > > Objections? Oh, and s/CONFIG_RTC/CONFIG_JS_RTC/ in arch/sparc/defconfig, of course.