public inbox for linux-hwmon@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] hwmon: (sht21) Update data sheet URLs
@ 2018-01-26 23:31 Danilo Bargen
  2018-01-27 16:09 ` Guenter Roeck
  0 siblings, 1 reply; 7+ messages in thread
From: Danilo Bargen @ 2018-01-26 23:31 UTC (permalink / raw)
  To: linux-hwmon; +Cc: jdelvare, linux, andreas.brauchli, Danilo Bargen

Signed-off-by: Danilo Bargen <mail@dbrgn.ch>
---
 Documentation/hwmon/sht21 | 6 +++---
 drivers/hwmon/sht21.c     | 7 +------
 2 files changed, 4 insertions(+), 9 deletions(-)

diff --git a/Documentation/hwmon/sht21 b/Documentation/hwmon/sht21
index 47f4765db256..e913605e1d70 100644
--- a/Documentation/hwmon/sht21
+++ b/Documentation/hwmon/sht21
@@ -6,13 +6,13 @@ Supported chips:
     Prefix: 'sht21'
     Addresses scanned: none
     Datasheet: Publicly available at the Sensirion website
-    http://www.sensirion.com/en/pdf/product_information/Datasheet-humidity-sensor-SHT21.pdf
+    https://www.sensirion.com/fileadmin/user_upload/customers/sensirion/Dokumente/2_Humidity_Sensors/Sensirion_Humidity_Sensors_SHT21_Datasheet.pdf
 
   * Sensirion SHT25
-    Prefix: 'sht21'
+    Prefix: 'sht25'
     Addresses scanned: none
     Datasheet: Publicly available at the Sensirion website
-    http://www.sensirion.com/en/pdf/product_information/Datasheet-humidity-sensor-SHT25.pdf
+    https://www.sensirion.com/fileadmin/user_upload/customers/sensirion/Dokumente/2_Humidity_Sensors/Sensirion_Humidity_Sensors_SHT25_Datasheet.pdf
 
 Author:
   Urs Fleisch <urs.fleisch@sensirion.com>
diff --git a/drivers/hwmon/sht21.c b/drivers/hwmon/sht21.c
index 06706d288355..984f14b3e89a 100644
--- a/drivers/hwmon/sht21.c
+++ b/drivers/hwmon/sht21.c
@@ -12,12 +12,7 @@
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA
- *
- * Data sheet available (5/2010) at
- * http://www.sensirion.com/en/pdf/product_information/Datasheet-humidity-sensor-SHT21.pdf
+ * Data sheet available at https://www.sensirion.com/sht2x/
  */
 
 #include <linux/module.h>
-- 
2.15.1

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

* Re: [PATCH] hwmon: (sht21) Update data sheet URLs
  2018-01-26 23:31 [PATCH] hwmon: (sht21) Update data sheet URLs Danilo Bargen
@ 2018-01-27 16:09 ` Guenter Roeck
  2018-02-02 10:13   ` Danilo Bargen
  0 siblings, 1 reply; 7+ messages in thread
From: Guenter Roeck @ 2018-01-27 16:09 UTC (permalink / raw)
  To: Danilo Bargen, linux-hwmon; +Cc: jdelvare, andreas.brauchli, Danilo Bargen

On 01/26/2018 03:31 PM, Danilo Bargen wrote:

Some prosa expected here.

> Signed-off-by: Danilo Bargen <mail@dbrgn.ch>
> ---
>   Documentation/hwmon/sht21 | 6 +++---
>   drivers/hwmon/sht21.c     | 7 +------
>   2 files changed, 4 insertions(+), 9 deletions(-)
> 
> diff --git a/Documentation/hwmon/sht21 b/Documentation/hwmon/sht21
> index 47f4765db256..e913605e1d70 100644
> --- a/Documentation/hwmon/sht21
> +++ b/Documentation/hwmon/sht21
> @@ -6,13 +6,13 @@ Supported chips:
>       Prefix: 'sht21'
>       Addresses scanned: none
>       Datasheet: Publicly available at the Sensirion website
> -    http://www.sensirion.com/en/pdf/product_information/Datasheet-humidity-sensor-SHT21.pdf
> +    https://www.sensirion.com/fileadmin/user_upload/customers/sensirion/Dokumente/2_Humidity_Sensors/Sensirion_Humidity_Sensors_SHT21_Datasheet.pdf
>   
>     * Sensirion SHT25
> -    Prefix: 'sht21'
> +    Prefix: 'sht25'
>       Addresses scanned: none
>       Datasheet: Publicly available at the Sensirion website
> -    http://www.sensirion.com/en/pdf/product_information/Datasheet-humidity-sensor-SHT25.pdf
> +    https://www.sensirion.com/fileadmin/user_upload/customers/sensirion/Dokumente/2_Humidity_Sensors/Sensirion_Humidity_Sensors_SHT25_Datasheet.pdf
>   
>   Author:
>     Urs Fleisch <urs.fleisch@sensirion.com>
> diff --git a/drivers/hwmon/sht21.c b/drivers/hwmon/sht21.c
> index 06706d288355..984f14b3e89a 100644
> --- a/drivers/hwmon/sht21.c
> +++ b/drivers/hwmon/sht21.c
> @@ -12,12 +12,7 @@
>    * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
>    * GNU General Public License for more details.
>    *
> - * You should have received a copy of the GNU General Public License
> - * along with this program; if not, write to the Free Software
> - * Foundation, Inc., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA
> - *
> - * Data sheet available (5/2010) at
> - * http://www.sensirion.com/en/pdf/product_information/Datasheet-humidity-sensor-SHT21.pdf
> + * Data sheet available at https://www.sensirion.com/sht2x/

This does a bit more than updating the link to the datasheet.

Guenter

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

* Re: [PATCH] hwmon: (sht21) Update data sheet URLs
  2018-01-27 16:09 ` Guenter Roeck
@ 2018-02-02 10:13   ` Danilo Bargen
  2018-02-02 10:40     ` [PATCH v2 1/2] " Danilo Bargen
  2018-02-02 10:42     ` [PATCH v2 2/2] hwmon: (sht3x) Update data sheet URL Danilo Bargen
  0 siblings, 2 replies; 7+ messages in thread
From: Danilo Bargen @ 2018-02-02 10:13 UTC (permalink / raw)
  To: Guenter Roeck; +Cc: linux-hwmon, jdelvare, andreas.brauchli

Hello Guenter

> Some prosa expected here.
> ...
> This does a bit more than updating the link to the datasheet.

Thanks, I will submit a patch with some more explanation in the commit message
and without the license header change (which was suggested by scripts/checkpatch.pl).

Danilo

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

* [PATCH v2 1/2] hwmon: (sht21) Update data sheet URLs
  2018-02-02 10:13   ` Danilo Bargen
@ 2018-02-02 10:40     ` Danilo Bargen
  2018-02-09 22:05       ` [v2,1/2] " Guenter Roeck
  2018-02-02 10:42     ` [PATCH v2 2/2] hwmon: (sht3x) Update data sheet URL Danilo Bargen
  1 sibling, 1 reply; 7+ messages in thread
From: Danilo Bargen @ 2018-02-02 10:40 UTC (permalink / raw)
  To: Guenter Roeck; +Cc: linux-hwmon, jdelvare, andreas.brauchli

The previously used URLs are dead.

Sensirion provides permalinks for their product datasheets at
https://www.sensirion.com/en/about-us/links/.

Signed-off-by: Danilo Bargen <mail@dbrgn.ch>
---
 Documentation/hwmon/sht21 | 6 +++---
 drivers/hwmon/sht21.c     | 3 +--
 2 files changed, 4 insertions(+), 5 deletions(-)

diff --git a/Documentation/hwmon/sht21 b/Documentation/hwmon/sht21
index 47f4765db256..8b3cdda541c1 100644
--- a/Documentation/hwmon/sht21
+++ b/Documentation/hwmon/sht21
@@ -6,13 +6,13 @@ Supported chips:
     Prefix: 'sht21'
     Addresses scanned: none
     Datasheet: Publicly available at the Sensirion website
-    http://www.sensirion.com/en/pdf/product_information/Datasheet-humidity-sensor-SHT21.pdf
+    http://www.sensirion.com/file/datasheet_sht21
 
   * Sensirion SHT25
-    Prefix: 'sht21'
+    Prefix: 'sht25'
     Addresses scanned: none
     Datasheet: Publicly available at the Sensirion website
-    http://www.sensirion.com/en/pdf/product_information/Datasheet-humidity-sensor-SHT25.pdf
+    http://www.sensirion.com/file/datasheet_sht25
 
 Author:
   Urs Fleisch <urs.fleisch@sensirion.com>
diff --git a/drivers/hwmon/sht21.c b/drivers/hwmon/sht21.c
index 06706d288355..e23736e21422 100644
--- a/drivers/hwmon/sht21.c
+++ b/drivers/hwmon/sht21.c
@@ -16,8 +16,7 @@
  * along with this program; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA
  *
- * Data sheet available (5/2010) at
- * http://www.sensirion.com/en/pdf/product_information/Datasheet-humidity-sensor-SHT21.pdf
+ * Data sheet available at http://www.sensirion.com/file/datasheet_sht21
  */
 
 #include <linux/module.h>
-- 
2.16.1

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

* [PATCH v2 2/2] hwmon: (sht3x) Update data sheet URL
  2018-02-02 10:13   ` Danilo Bargen
  2018-02-02 10:40     ` [PATCH v2 1/2] " Danilo Bargen
@ 2018-02-02 10:42     ` Danilo Bargen
  2018-02-09 22:06       ` [v2,2/2] " Guenter Roeck
  1 sibling, 1 reply; 7+ messages in thread
From: Danilo Bargen @ 2018-02-02 10:42 UTC (permalink / raw)
  To: Guenter Roeck; +Cc: linux-hwmon, jdelvare, andreas.brauchli

The previously used URL is dead.

Sensirion provides permalinks for their product datasheets at
https://www.sensirion.com/en/about-us/links/.

Signed-off-by: Danilo Bargen <mail@dbrgn.ch>
---
 Documentation/hwmon/sht3x | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/hwmon/sht3x b/Documentation/hwmon/sht3x
index b0d88184f48e..d9daa6ab1e8e 100644
--- a/Documentation/hwmon/sht3x
+++ b/Documentation/hwmon/sht3x
@@ -5,7 +5,7 @@ Supported chips:
   * Sensirion SHT3x-DIS
     Prefix: 'sht3x'
     Addresses scanned: none
-    Datasheet: http://www.sensirion.com/fileadmin/user_upload/customers/sensirion/Dokumente/Humidity/Sensirion_Humidity_Datasheet_SHT3x_DIS.pdf
+    Datasheet: https://www.sensirion.com/file/datasheet_sht3x_digital
 
 Author:
   David Frey <david.frey@sensirion.com>
-- 
2.16.1

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

* Re: [v2,1/2] hwmon: (sht21) Update data sheet URLs
  2018-02-02 10:40     ` [PATCH v2 1/2] " Danilo Bargen
@ 2018-02-09 22:05       ` Guenter Roeck
  0 siblings, 0 replies; 7+ messages in thread
From: Guenter Roeck @ 2018-02-09 22:05 UTC (permalink / raw)
  To: Danilo Bargen; +Cc: linux-hwmon, jdelvare, andreas.brauchli

On Fri, Feb 02, 2018 at 11:40:52AM +0100, Danilo Bargen wrote:
> The previously used URLs are dead.
> 
> Sensirion provides permalinks for their product datasheets at
> https://www.sensirion.com/en/about-us/links/.
> 
> Signed-off-by: Danilo Bargen <mail@dbrgn.ch>

Applied to hwmon-next.

Thanks,
Guenter

> ---
>  Documentation/hwmon/sht21 | 6 +++---
>  drivers/hwmon/sht21.c     | 3 +--
>  2 files changed, 4 insertions(+), 5 deletions(-)
> 
> diff --git a/Documentation/hwmon/sht21 b/Documentation/hwmon/sht21
> index 47f4765db256..8b3cdda541c1 100644
> --- a/Documentation/hwmon/sht21
> +++ b/Documentation/hwmon/sht21
> @@ -6,13 +6,13 @@ Supported chips:
>      Prefix: 'sht21'
>      Addresses scanned: none
>      Datasheet: Publicly available at the Sensirion website
> -    http://www.sensirion.com/en/pdf/product_information/Datasheet-humidity-sensor-SHT21.pdf
> +    http://www.sensirion.com/file/datasheet_sht21
>  
>    * Sensirion SHT25
> -    Prefix: 'sht21'
> +    Prefix: 'sht25'
>      Addresses scanned: none
>      Datasheet: Publicly available at the Sensirion website
> -    http://www.sensirion.com/en/pdf/product_information/Datasheet-humidity-sensor-SHT25.pdf
> +    http://www.sensirion.com/file/datasheet_sht25
>  
>  Author:
>    Urs Fleisch <urs.fleisch@sensirion.com>
> diff --git a/drivers/hwmon/sht21.c b/drivers/hwmon/sht21.c
> index 06706d288355..e23736e21422 100644
> --- a/drivers/hwmon/sht21.c
> +++ b/drivers/hwmon/sht21.c
> @@ -16,8 +16,7 @@
>   * along with this program; if not, write to the Free Software
>   * Foundation, Inc., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA
>   *
> - * Data sheet available (5/2010) at
> - * http://www.sensirion.com/en/pdf/product_information/Datasheet-humidity-sensor-SHT21.pdf
> + * Data sheet available at http://www.sensirion.com/file/datasheet_sht21
>   */
>  
>  #include <linux/module.h>

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

* Re: [v2,2/2] hwmon: (sht3x) Update data sheet URL
  2018-02-02 10:42     ` [PATCH v2 2/2] hwmon: (sht3x) Update data sheet URL Danilo Bargen
@ 2018-02-09 22:06       ` Guenter Roeck
  0 siblings, 0 replies; 7+ messages in thread
From: Guenter Roeck @ 2018-02-09 22:06 UTC (permalink / raw)
  To: Danilo Bargen; +Cc: linux-hwmon, jdelvare, andreas.brauchli

On Fri, Feb 02, 2018 at 11:42:35AM +0100, Danilo Bargen wrote:
> The previously used URL is dead.
> 
> Sensirion provides permalinks for their product datasheets at
> https://www.sensirion.com/en/about-us/links/.
> 
> Signed-off-by: Danilo Bargen <mail@dbrgn.ch>

Applied to hwmon-next.

Thanks,
Guenter

> ---
>  Documentation/hwmon/sht3x | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/Documentation/hwmon/sht3x b/Documentation/hwmon/sht3x
> index b0d88184f48e..d9daa6ab1e8e 100644
> --- a/Documentation/hwmon/sht3x
> +++ b/Documentation/hwmon/sht3x
> @@ -5,7 +5,7 @@ Supported chips:
>    * Sensirion SHT3x-DIS
>      Prefix: 'sht3x'
>      Addresses scanned: none
> -    Datasheet: http://www.sensirion.com/fileadmin/user_upload/customers/sensirion/Dokumente/Humidity/Sensirion_Humidity_Datasheet_SHT3x_DIS.pdf
> +    Datasheet: https://www.sensirion.com/file/datasheet_sht3x_digital
>  
>  Author:
>    David Frey <david.frey@sensirion.com>

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

end of thread, other threads:[~2018-02-09 22:06 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-01-26 23:31 [PATCH] hwmon: (sht21) Update data sheet URLs Danilo Bargen
2018-01-27 16:09 ` Guenter Roeck
2018-02-02 10:13   ` Danilo Bargen
2018-02-02 10:40     ` [PATCH v2 1/2] " Danilo Bargen
2018-02-09 22:05       ` [v2,1/2] " Guenter Roeck
2018-02-02 10:42     ` [PATCH v2 2/2] hwmon: (sht3x) Update data sheet URL Danilo Bargen
2018-02-09 22:06       ` [v2,2/2] " Guenter Roeck

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