All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/3] rtc: pcf2127: Fix the datasheet URL
@ 2021-06-03 14:34 Fabio Estevam
  2021-06-03 14:34 ` [PATCH 2/3] rtc: pcf85063: " Fabio Estevam
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Fabio Estevam @ 2021-06-03 14:34 UTC (permalink / raw)
  To: alexandre.belloni; +Cc: linux-rtc, Fabio Estevam

The current datasheet URL is no longer valid.

Replace with a valid one.

Signed-off-by: Fabio Estevam <festevam@gmail.com>
---
 drivers/rtc/rtc-pcf2127.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/rtc/rtc-pcf2127.c b/drivers/rtc/rtc-pcf2127.c
index d13c20a2adf7..48ce1e85deb1 100644
--- a/drivers/rtc/rtc-pcf2127.c
+++ b/drivers/rtc/rtc-pcf2127.c
@@ -10,7 +10,7 @@
  *
  * based on the other drivers in this same directory.
  *
- * Datasheet: http://cache.nxp.com/documents/data_sheet/PCF2127.pdf
+ * Datasheet: https://www.nxp.com/docs/en/data-sheet/PCF2127.pdf
  */
 
 #include <linux/i2c.h>
-- 
2.25.1


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

* [PATCH 2/3] rtc: pcf85063: Fix the datasheet URL
  2021-06-03 14:34 [PATCH 1/3] rtc: pcf2127: Fix the datasheet URL Fabio Estevam
@ 2021-06-03 14:34 ` Fabio Estevam
  2021-06-03 15:12   ` Nobuhiro Iwamatsu
  2021-06-03 14:34 ` [PATCH 3/3] rtc: pcf8563: " Fabio Estevam
  2021-06-20 21:49 ` [PATCH 1/3] rtc: pcf2127: " Alexandre Belloni
  2 siblings, 1 reply; 5+ messages in thread
From: Fabio Estevam @ 2021-06-03 14:34 UTC (permalink / raw)
  To: alexandre.belloni; +Cc: linux-rtc, Fabio Estevam

The current datasheet URL is no longer valid.

Replace with a valid one.

Signed-off-by: Fabio Estevam <festevam@gmail.com>
---
 drivers/rtc/rtc-pcf85063.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/rtc/rtc-pcf85063.c b/drivers/rtc/rtc-pcf85063.c
index 82becae14229..9a5297098d39 100644
--- a/drivers/rtc/rtc-pcf85063.c
+++ b/drivers/rtc/rtc-pcf85063.c
@@ -21,8 +21,8 @@
 /*
  * Information for this driver was pulled from the following datasheets.
  *
- *  https://www.nxp.com/documents/data_sheet/PCF85063A.pdf
- *  https://www.nxp.com/documents/data_sheet/PCF85063TP.pdf
+ *  https://www.nxp.com/docs/en/data-sheet/PCF85063A.pdf
+ *  https://www.nxp.com/docs/en/data-sheet/PCF85063TP.pdf
  *
  *  PCF85063A -- Rev. 6 — 18 November 2015
  *  PCF85063TP -- Rev. 4 — 6 May 2015
-- 
2.25.1


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

* [PATCH 3/3] rtc: pcf8563: Fix the datasheet URL
  2021-06-03 14:34 [PATCH 1/3] rtc: pcf2127: Fix the datasheet URL Fabio Estevam
  2021-06-03 14:34 ` [PATCH 2/3] rtc: pcf85063: " Fabio Estevam
@ 2021-06-03 14:34 ` Fabio Estevam
  2021-06-20 21:49 ` [PATCH 1/3] rtc: pcf2127: " Alexandre Belloni
  2 siblings, 0 replies; 5+ messages in thread
From: Fabio Estevam @ 2021-06-03 14:34 UTC (permalink / raw)
  To: alexandre.belloni; +Cc: linux-rtc, Fabio Estevam

The current datasheet URL is no longer valid.

Replace with a valid one.

Signed-off-by: Fabio Estevam <festevam@gmail.com>
---
 drivers/rtc/rtc-pcf8563.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/rtc/rtc-pcf8563.c b/drivers/rtc/rtc-pcf8563.c
index 18f12f36eb2b..c8bddfb94129 100644
--- a/drivers/rtc/rtc-pcf8563.c
+++ b/drivers/rtc/rtc-pcf8563.c
@@ -8,7 +8,7 @@
  *
  * based on the other drivers in this same directory.
  *
- * http://www.semiconductors.philips.com/acrobat/datasheets/PCF8563-04.pdf
+ * https://www.nxp.com/docs/en/data-sheet/PCF8563.pdf
  */
 
 #include <linux/clk-provider.h>
-- 
2.25.1


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

* Re: [PATCH 2/3] rtc: pcf85063: Fix the datasheet URL
  2021-06-03 14:34 ` [PATCH 2/3] rtc: pcf85063: " Fabio Estevam
@ 2021-06-03 15:12   ` Nobuhiro Iwamatsu
  0 siblings, 0 replies; 5+ messages in thread
From: Nobuhiro Iwamatsu @ 2021-06-03 15:12 UTC (permalink / raw)
  To: Fabio Estevam; +Cc: Alexandre Belloni, linux-rtc

Hi,

2021年6月3日(木) 23:36 Fabio Estevam <festevam@gmail.com>:
>
> The current datasheet URL is no longer valid.
>
> Replace with a valid one.
>
> Signed-off-by: Fabio Estevam <festevam@gmail.com>
> ---
>  drivers/rtc/rtc-pcf85063.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/rtc/rtc-pcf85063.c b/drivers/rtc/rtc-pcf85063.c
> index 82becae14229..9a5297098d39 100644
> --- a/drivers/rtc/rtc-pcf85063.c
> +++ b/drivers/rtc/rtc-pcf85063.c
> @@ -21,8 +21,8 @@
>  /*
>   * Information for this driver was pulled from the following datasheets.
>   *
> - *  https://www.nxp.com/documents/data_sheet/PCF85063A.pdf
> - *  https://www.nxp.com/documents/data_sheet/PCF85063TP.pdf
> + *  https://www.nxp.com/docs/en/data-sheet/PCF85063A.pdf
> + *  https://www.nxp.com/docs/en/data-sheet/PCF85063TP.pdf
>   *
>   *  PCF85063A -- Rev. 6 — 18 November 2015

Could you also update Rev and date?

>   *  PCF85063TP -- Rev. 4 — 6 May 2015
> --
> 2.25.1
>

Best regards,
  Nobuhiro

-- 
Nobuhiro Iwamatsu
   iwamatsu at {nigauri.org / debian.org}
   GPG ID: 40AD1FA6

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

* Re: [PATCH 1/3] rtc: pcf2127: Fix the datasheet URL
  2021-06-03 14:34 [PATCH 1/3] rtc: pcf2127: Fix the datasheet URL Fabio Estevam
  2021-06-03 14:34 ` [PATCH 2/3] rtc: pcf85063: " Fabio Estevam
  2021-06-03 14:34 ` [PATCH 3/3] rtc: pcf8563: " Fabio Estevam
@ 2021-06-20 21:49 ` Alexandre Belloni
  2 siblings, 0 replies; 5+ messages in thread
From: Alexandre Belloni @ 2021-06-20 21:49 UTC (permalink / raw)
  To: Fabio Estevam; +Cc: Alexandre Belloni, linux-rtc

On Thu, 3 Jun 2021 11:34:45 -0300, Fabio Estevam wrote:
> The current datasheet URL is no longer valid.
> 
> Replace with a valid one.

Applied, thanks!

[1/3] rtc: pcf2127: Fix the datasheet URL
      commit: 836e9ea3ccc263d17fdeb90f28089ff1d945500d
[2/3] rtc: pcf85063: Fix the datasheet URL
      commit: 663bff1753a88195328fa7dc97cb96c9916343ed
[3/3] rtc: pcf8563: Fix the datasheet URL
      commit: 94af1e732abe6e83fb146fc89d6f520e6a939c6a

Best regards,
-- 
Alexandre Belloni <alexandre.belloni@bootlin.com>

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

end of thread, other threads:[~2021-06-20 21:49 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-03 14:34 [PATCH 1/3] rtc: pcf2127: Fix the datasheet URL Fabio Estevam
2021-06-03 14:34 ` [PATCH 2/3] rtc: pcf85063: " Fabio Estevam
2021-06-03 15:12   ` Nobuhiro Iwamatsu
2021-06-03 14:34 ` [PATCH 3/3] rtc: pcf8563: " Fabio Estevam
2021-06-20 21:49 ` [PATCH 1/3] rtc: pcf2127: " Alexandre Belloni

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.