public inbox for linux-i2c@vger.kernel.org
 help / color / mirror / Atom feed
* rtc pfc8563 driver lost a chip id
@ 2008-06-10 22:22 Jon Smirl
       [not found] ` <9e4733910806101522o1e29c404t72de63772d34f1b7-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
  0 siblings, 1 reply; 3+ messages in thread
From: Jon Smirl @ 2008-06-10 22:22 UTC (permalink / raw)
  To: Linux I2C

It does the rtc8564 too.

diff --git a/drivers/rtc/rtc-pcf8563.c b/drivers/rtc/rtc-pcf8563.c
index 0fc4c36..748a502 100644
--- a/drivers/rtc/rtc-pcf8563.c
+++ b/drivers/rtc/rtc-pcf8563.c
@@ -302,6 +302,7 @@ static int pcf8563_remove(struct i2c_client *client)

 static const struct i2c_device_id pcf8563_id[] = {
        { "pcf8563", 0 },
+       { "rtc8564", 0 },
        { }
 };
 MODULE_DEVICE_TABLE(i2c, pcf8563_id);


-- 
Jon Smirl
jonsmirl-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org

_______________________________________________
i2c mailing list
i2c-GZX6beZjE8VD60Wz+7aTrA@public.gmane.org
http://lists.lm-sensors.org/mailman/listinfo/i2c

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: rtc pfc8563 driver lost a chip id
       [not found] ` <9e4733910806101522o1e29c404t72de63772d34f1b7-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
@ 2008-06-11  7:04   ` Jean Delvare
       [not found]     ` <20080611090458.2c22cb43-ig7AzVSIIG7kN2dkZ6Wm7A@public.gmane.org>
  0 siblings, 1 reply; 3+ messages in thread
From: Jean Delvare @ 2008-06-11  7:04 UTC (permalink / raw)
  To: Jon Smirl; +Cc: Linux I2C

Hi Jon,

On Tue, 10 Jun 2008 18:22:50 -0400, Jon Smirl wrote:
> It does the rtc8564 too.
> 
> diff --git a/drivers/rtc/rtc-pcf8563.c b/drivers/rtc/rtc-pcf8563.c
> index 0fc4c36..748a502 100644
> --- a/drivers/rtc/rtc-pcf8563.c
> +++ b/drivers/rtc/rtc-pcf8563.c
> @@ -302,6 +302,7 @@ static int pcf8563_remove(struct i2c_client *client)
> 
>  static const struct i2c_device_id pcf8563_id[] = {
>         { "pcf8563", 0 },
> +       { "rtc8564", 0 },
>         { }
>  };
>  MODULE_DEVICE_TABLE(i2c, pcf8563_id);

Please check MAINTAINERS for the right person and list to send this
patch to.

-- 
Jean Delvare

_______________________________________________
i2c mailing list
i2c-GZX6beZjE8VD60Wz+7aTrA@public.gmane.org
http://lists.lm-sensors.org/mailman/listinfo/i2c

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Fwd:  rtc pfc8563 driver lost a chip id
       [not found]     ` <20080611090458.2c22cb43-ig7AzVSIIG7kN2dkZ6Wm7A@public.gmane.org>
@ 2008-06-11 13:21       ` Jon Smirl
  0 siblings, 0 replies; 3+ messages in thread
From: Jon Smirl @ 2008-06-11 13:21 UTC (permalink / raw)
  To: Linux I2C, rtc-linux-/JYPxA39Uh5TLH3MbocFFw

I think this got dropped during the conversion to the new probe signature.

>From the Kconfig...

config RTC_DRV_PCF8563
        tristate "Philips PCF8563/Epson RTC8564"
        help
          If you say yes here you get support for the
          Philips PCF8563 RTC chip. The Epson RTC8564
          should work as well.

          This driver can also be built as a module. If so, the module
          will be called rtc-pcf8563.



---------- Forwarded message ----------
From: Jean Delvare <khali-PUYAD+kWke1g9hUCZPvPmw@public.gmane.org>
Date: Jun 11, 2008 3:04 AM
Subject: Re: [i2c] rtc pfc8563 driver lost a chip id
To: Jon Smirl <jonsmirl-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
Cc: Linux I2C <i2c-GZX6beZjE8VD60Wz+7aTrA@public.gmane.org>


Hi Jon,


 On Tue, 10 Jun 2008 18:22:50 -0400, Jon Smirl wrote:
 > It does the rtc8564 too.
 >
 > diff --git a/drivers/rtc/rtc-pcf8563.c b/drivers/rtc/rtc-pcf8563.c
 > index 0fc4c36..748a502 100644
 > --- a/drivers/rtc/rtc-pcf8563.c
 > +++ b/drivers/rtc/rtc-pcf8563.c
 > @@ -302,6 +302,7 @@ static int pcf8563_remove(struct i2c_client *client)
 >
 >  static const struct i2c_device_id pcf8563_id[] = {
 >         { "pcf8563", 0 },
 > +       { "rtc8564", 0 },
 >         { }
 >  };
 >  MODULE_DEVICE_TABLE(i2c, pcf8563_id);


Please check MAINTAINERS for the right person and list to send this
 patch to.

 --

Jean Delvare


-- 
Jon Smirl
jonsmirl-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org

_______________________________________________
i2c mailing list
i2c-GZX6beZjE8VD60Wz+7aTrA@public.gmane.org
http://lists.lm-sensors.org/mailman/listinfo/i2c

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2008-06-11 13:21 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-06-10 22:22 rtc pfc8563 driver lost a chip id Jon Smirl
     [not found] ` <9e4733910806101522o1e29c404t72de63772d34f1b7-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2008-06-11  7:04   ` Jean Delvare
     [not found]     ` <20080611090458.2c22cb43-ig7AzVSIIG7kN2dkZ6Wm7A@public.gmane.org>
2008-06-11 13:21       ` Fwd: " Jon Smirl

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox