linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] Docs: Fixes link to I2C specification
@ 2021-11-04  6:00 Deep Majumder
  2021-11-04 15:20 ` Randy Dunlap
  2021-11-05 22:03 ` Wolfram Sang
  0 siblings, 2 replies; 5+ messages in thread
From: Deep Majumder @ 2021-11-04  6:00 UTC (permalink / raw)
  To: wsa; +Cc: linux-doc, linux-i2c, linux-kernel, Deep Majumder

The link to the I2C specification is broken and is replaced in this
patch by one that points to Rev 6 (2014) of the specification.
Although `https://www.nxp.com" hosts the Rev 7 (2021) of this
specification, it is behind a login-wall and thus cannot be used.

Signed-off-by: Deep Majumder <deep@fastmail.in>
---
 Documentation/i2c/summary.rst | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/i2c/summary.rst b/Documentation/i2c/summary.rst
index 136c4e333be7..607c72425ca6 100644
--- a/Documentation/i2c/summary.rst
+++ b/Documentation/i2c/summary.rst
@@ -12,7 +12,7 @@ and so are not advertised as being I2C but come under different names,
 e.g. TWI (Two Wire Interface), IIC.
 
 The official I2C specification is the `"I2C-bus specification and user
-manual" (UM10204) <https://www.nxp.com/docs/en/user-guide/UM10204.pdf>`_
+manual" (UM10204) <https://www.pololu.com/file/0J435/UM10204.pdf>`_
 published by NXP Semiconductors.
 
 SMBus (System Management Bus) is based on the I2C protocol, and is mostly
-- 
2.30.2


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

* Re: [PATCH] Docs: Fixes link to I2C specification
  2021-11-04  6:00 [PATCH] Docs: Fixes link to I2C specification Deep Majumder
@ 2021-11-04 15:20 ` Randy Dunlap
  2021-11-05 22:03 ` Wolfram Sang
  1 sibling, 0 replies; 5+ messages in thread
From: Randy Dunlap @ 2021-11-04 15:20 UTC (permalink / raw)
  To: Deep Majumder, wsa; +Cc: linux-doc, linux-i2c, linux-kernel

On 11/3/21 11:00 PM, Deep Majumder wrote:
> The link to the I2C specification is broken and is replaced in this
> patch by one that points to Rev 6 (2014) of the specification.
> Although `https://www.nxp.com" hosts the Rev 7 (2021) of this
> specification, it is behind a login-wall and thus cannot be used.

To be clear, it can be downloaded if one registers first, but it cannot
easily be downloaded by using something like 'wget filename'.

> 
> Signed-off-by: Deep Majumder <deep@fastmail.in>
> ---
>   Documentation/i2c/summary.rst | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/Documentation/i2c/summary.rst b/Documentation/i2c/summary.rst
> index 136c4e333be7..607c72425ca6 100644
> --- a/Documentation/i2c/summary.rst
> +++ b/Documentation/i2c/summary.rst
> @@ -12,7 +12,7 @@ and so are not advertised as being I2C but come under different names,
>   e.g. TWI (Two Wire Interface), IIC.
>   
>   The official I2C specification is the `"I2C-bus specification and user
> -manual" (UM10204) <https://www.nxp.com/docs/en/user-guide/UM10204.pdf>`_
> +manual" (UM10204) <https://www.pololu.com/file/0J435/UM10204.pdf>`_
>   published by NXP Semiconductors.
>   
>   SMBus (System Management Bus) is based on the I2C protocol, and is mostly
> 


-- 
~Randy

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

* Re: [PATCH] Docs: Fixes link to I2C specification
  2021-11-04  6:00 [PATCH] Docs: Fixes link to I2C specification Deep Majumder
  2021-11-04 15:20 ` Randy Dunlap
@ 2021-11-05 22:03 ` Wolfram Sang
  2021-11-11 18:43   ` Deep Majumder
  1 sibling, 1 reply; 5+ messages in thread
From: Wolfram Sang @ 2021-11-05 22:03 UTC (permalink / raw)
  To: Deep Majumder; +Cc: linux-doc, linux-i2c, linux-kernel

[-- Attachment #1: Type: text/plain, Size: 1043 bytes --]

On Thu, Nov 04, 2021 at 11:30:18AM +0530, Deep Majumder wrote:
> The link to the I2C specification is broken and is replaced in this
> patch by one that points to Rev 6 (2014) of the specification.
> Although `https://www.nxp.com" hosts the Rev 7 (2021) of this
> specification, it is behind a login-wall and thus cannot be used.
> 
> Signed-off-by: Deep Majumder <deep@fastmail.in>

Thanks for pointing out this issue!

>  The official I2C specification is the `"I2C-bus specification and user
> -manual" (UM10204) <https://www.nxp.com/docs/en/user-guide/UM10204.pdf>`_
> +manual" (UM10204) <https://www.pololu.com/file/0J435/UM10204.pdf>`_

I'd think we should have two links. One to the latest official specs,
even though it is behind a login wall. And one to the latest free
version. For that, I think the archieve.org address which Wikipedia uses
is more stable thant the pololu address from above:

https://web.archive.org/web/20210813122132/https://www.nxp.com/docs/en/user-guide/UM10204.pdf

What do you think?


[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

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

* Re: [PATCH] Docs: Fixes link to I2C specification
  2021-11-05 22:03 ` Wolfram Sang
@ 2021-11-11 18:43   ` Deep Majumder
  2021-11-11 19:36     ` Wolfram Sang
  0 siblings, 1 reply; 5+ messages in thread
From: Deep Majumder @ 2021-11-11 18:43 UTC (permalink / raw)
  To: Wolfram Sang, linux-doc, linux-i2c, linux-kernel

Wolfram Sang wrote:
> On Thu, Nov 04, 2021 at 11:30:18AM +0530, Deep Majumder wrote:
> > The link to the I2C specification is broken and is replaced in this
> > patch by one that points to Rev 6 (2014) of the specification.
> > Although `https://www.nxp.com" hosts the Rev 7 (2021) of this
> > specification, it is behind a login-wall and thus cannot be used.
> > 
> > Signed-off-by: Deep Majumder <deep@fastmail.in>
> 
> Thanks for pointing out this issue!
> 
> >  The official I2C specification is the `"I2C-bus specification and user
> > -manual" (UM10204) <https://www.nxp.com/docs/en/user-guide/UM10204.pdf>`_
> > +manual" (UM10204) <https://www.pololu.com/file/0J435/UM10204.pdf>`_
> 
> I'd think we should have two links. One to the latest official specs,
> even though it is behind a login wall. And one to the latest free
> version. For that, I think the archieve.org address which Wikipedia uses
> is more stable thant the pololu address from above:
> 
> https://web.archive.org/web/20210813122132/https://www.nxp.com/docs/en/user-guide/UM10204.pdf
> 
> What do you think?
> 
Yes, I agree. Should I update the patch and re-send it?


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

* Re: [PATCH] Docs: Fixes link to I2C specification
  2021-11-11 18:43   ` Deep Majumder
@ 2021-11-11 19:36     ` Wolfram Sang
  0 siblings, 0 replies; 5+ messages in thread
From: Wolfram Sang @ 2021-11-11 19:36 UTC (permalink / raw)
  To: linux-doc, linux-i2c, linux-kernel

[-- Attachment #1: Type: text/plain, Size: 501 bytes --]


> > I'd think we should have two links. One to the latest official specs,
> > even though it is behind a login wall. And one to the latest free
> > version. For that, I think the archieve.org address which Wikipedia uses
> > is more stable thant the pololu address from above:
> > 
> > https://web.archive.org/web/20210813122132/https://www.nxp.com/docs/en/user-guide/UM10204.pdf
> > 
> > What do you think?
> > 
> Yes, I agree. Should I update the patch and re-send it?

Yes, please.


[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

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

end of thread, other threads:[~2021-11-11 19:36 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-11-04  6:00 [PATCH] Docs: Fixes link to I2C specification Deep Majumder
2021-11-04 15:20 ` Randy Dunlap
2021-11-05 22:03 ` Wolfram Sang
2021-11-11 18:43   ` Deep Majumder
2021-11-11 19:36     ` Wolfram Sang

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).