Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 22 Apr 2009 00:26:43 -0600 (MDT)
From:      "M. Warner Losh" <imp@bsdimp.com>
To:        stas@FreeBSD.org
Cc:        svn-src-head@FreeBSD.org, svn-src-all@FreeBSD.org, src-committers@FreeBSD.org
Subject:   Re: svn commit: r191369 - in head/sys: arm/conf dev/iicbus
Message-ID:  <20090422.002643.639875625.imp@bsdimp.com>
In-Reply-To: <200904212248.n3LMmCbu027432@svn.freebsd.org>
References:  <200904212248.n3LMmCbu027432@svn.freebsd.org>

next in thread | previous in thread | raw e-mail | index | archive | help
In message: <200904212248.n3LMmCbu027432@svn.freebsd.org>
            Stanislav Sedov <stas@FreeBSD.org> writes:
: Author: stas
: Date: Tue Apr 21 22:48:12 2009
: New Revision: 191369
: URL: http://svn.freebsd.org/changeset/base/191369
: 
: Log:
:   - Rename ds1672 and ds133x devices to "ds1672_rtc" and "ds133x_rtc"
:     respectivly. This will allow one to have a kernel with both devices
:     present and use it for multiple boards with different types of RTC
:     sitting on a bus.
:   
:   Discussed with:	imp

Hey thanks Stas!  Now things are better than before both functionally
and cosmetically!  Good idea on the names...

Warner


: Modified:
:   head/sys/arm/conf/AVILA.hints
:   head/sys/arm/conf/BWCT.hints
:   head/sys/arm/conf/CAMBRIA.hints
:   head/sys/dev/iicbus/ds133x.c
:   head/sys/dev/iicbus/ds1672.c
: 
: Modified: head/sys/arm/conf/AVILA.hints
: ==============================================================================
: --- head/sys/arm/conf/AVILA.hints	Tue Apr 21 22:47:34 2009	(r191368)
: +++ head/sys/arm/conf/AVILA.hints	Tue Apr 21 22:48:12 2009	(r191369)
: @@ -44,5 +44,5 @@ hint.ad7418.0.at="iicbus0"
:  hint.ad7418.0.addr=0x50
:  
:  # Dallas Semiconductor DS1672 RTC
: -hint.rtc.0.at="iicbus0"
: -hint.rtc.0.addr=0xd0
: +hint.ds1672_rtc.0.at="iicbus0"
: +hint.ds1672_rtc.0.addr=0xd0
: 
: Modified: head/sys/arm/conf/BWCT.hints
: ==============================================================================
: --- head/sys/arm/conf/BWCT.hints	Tue Apr 21 22:47:34 2009	(r191368)
: +++ head/sys/arm/conf/BWCT.hints	Tue Apr 21 22:48:12 2009	(r191369)
: @@ -1,8 +1,8 @@
:  # $FreeBSD$
:  
:  # Dallas Semiconductor DS1672 RTC sitting on the I2C bus
: -hint.rtc.0.at="iicbus0"
: -hint.rtc.0.addr=0xd0
: +hint.ds1672_rtc.0.at="iicbus0"
: +hint.ds1672_rtc.0.addr=0xd0
:  
:  # NAtional Semiconductor LM75 temperature sensor sitting on the I2C bus
:  hint.lm75.0.at="iicbus0"
: 
: Modified: head/sys/arm/conf/CAMBRIA.hints
: ==============================================================================
: --- head/sys/arm/conf/CAMBRIA.hints	Tue Apr 21 22:47:34 2009	(r191368)
: +++ head/sys/arm/conf/CAMBRIA.hints	Tue Apr 21 22:48:12 2009	(r191369)
: @@ -46,8 +46,8 @@ hint.ad7418.0.at="iicbus0"
:  hint.ad7418.0.addr=0x50
:  
:  # Dallas Semiconductor DS1672 RTC
: -hint.rtc.0.at="iicbus0"
: -hint.rtc.0.addr=0xd0
: +hint.ds1672_rtc.0.at="iicbus0"
: +hint.ds1672_rtc.0.addr=0xd0
:  
:  # USB is part of the chip
:  hint.ehci.0.at="ixp0"
: 
: Modified: head/sys/dev/iicbus/ds133x.c
: ==============================================================================
: --- head/sys/dev/iicbus/ds133x.c	Tue Apr 21 22:47:34 2009	(r191368)
: +++ head/sys/dev/iicbus/ds133x.c	Tue Apr 21 22:48:12 2009	(r191369)
: @@ -46,7 +46,7 @@ __FBSDID("$FreeBSD$");
:  #include "iicbus_if.h"
:  #include "clock_if.h"
:  
: -#define DS133X_DEVNAME		"rtc"
: +#define DS133X_DEVNAME		"ds133x_rtc"
:  
:  #define	DS133X_ADDR		0xd0	/* slave address */
:  #define	DS133X_DATE_REG		0x0
: 
: Modified: head/sys/dev/iicbus/ds1672.c
: ==============================================================================
: --- head/sys/dev/iicbus/ds1672.c	Tue Apr 21 22:47:34 2009	(r191368)
: +++ head/sys/dev/iicbus/ds1672.c	Tue Apr 21 22:48:12 2009	(r191369)
: @@ -171,7 +171,7 @@ static device_method_t ds1672_methods[] 
:  };
:  
:  static driver_t ds1672_driver = {
: -	"rtc",
: +	"ds1672_rtc",
:  	ds1672_methods,
:  	sizeof(struct ds1672_softc),
:  };
: 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20090422.002643.639875625.imp>