Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

spi: lm70llp: fix links in doc and comments

Update links in the documentation and in-code comments which point to
the datasheet and schematic.

The current links don't work because National Semiconductor (which is
the manufacturer of this board and lm70) has been a part of Texas
Instruments since 2011 and hence http://www.national.com/ doesn't work
anymore.

Fixes: 78961a574037 ("spi_lm70llp parport adapter driver")
Fixes: 2b7300513b98 ("hwmon: (lm70) Code streamlining and cleanup")
Signed-off-by: Kousik Sanagavarapu <five231003@gmail.com>
Link: https://msgid.link/r/20240318154540.90613-2-five231003@gmail.com
Signed-off-by: Mark Brown <broonie@kernel.org>

authored by

Kousik Sanagavarapu and committed by
Mark Brown
7397175c 29895ce1

+4 -4
+2 -2
Documentation/spi/spi-lm70llp.rst
··· 6 6 7 7 * National Semiconductor LM70 LLP evaluation board 8 8 9 - Datasheet: http://www.national.com/pf/LM/LM70.html 9 + Datasheet: https://www.ti.com/lit/gpn/lm70 10 10 11 11 Author: 12 12 Kaiwan N Billimoria <kaiwan@designergraphix.com> ··· 28 28 The schematic for this particular board (the LM70EVAL-LLP) is 29 29 available (on page 4) here: 30 30 31 - http://www.national.com/appinfo/tempsensors/files/LM70LLPEVALmanual.pdf 31 + https://download.datasheets.com/pdfs/documentation/nat/kit&board/lm70llpevalmanual.pdf 32 32 33 33 The hardware interfacing on the LM70 LLP eval board is as follows: 34 34
+2 -2
drivers/spi/spi-lm70llp.c
··· 29 29 * 30 30 * Datasheet and Schematic: 31 31 * The LM70 is a temperature sensor chip from National Semiconductor; its 32 - * datasheet is available at http://www.national.com/pf/LM/LM70.html 32 + * datasheet is available at https://www.ti.com/lit/gpn/lm70 33 33 * The schematic for this particular board (the LM70EVAL-LLP) is 34 34 * available (on page 4) here: 35 - * http://www.national.com/appinfo/tempsensors/files/LM70LLPEVALmanual.pdf 35 + * https://download.datasheets.com/pdfs/documentation/nat/kit&board/lm70llpevalmanual.pdf 36 36 * 37 37 * Also see Documentation/spi/spi-lm70llp.rst. The SPI<->parport code here is 38 38 * (heavily) based on spi-butterfly by David Brownell.