]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
watchdog: ziirave_wdt: Make use of put_unaligned_le16
authorAndrey Smirnov <andrew.smirnov@gmail.com>
Mon, 12 Aug 2019 20:08:55 +0000 (13:08 -0700)
committerWim Van Sebroeck <wim@linux-watchdog.org>
Tue, 17 Sep 2019 06:59:06 +0000 (08:59 +0200)
Instead of doing this explicitly use put_unaligned_le16() to place
16-bit address value into command payload.

Signed-off-by: Andrey Smirnov <andrew.smirnov@gmail.com>
Cc: Chris Healy <cphealy@gmail.com>
Cc: Guenter Roeck <linux@roeck-us.net>
Cc: Rick Ramstetter <rick@anteaterllc.com>
Cc: linux-watchdog@vger.kernel.org
Cc: linux-kernel@vger.kernel.org
Reviewed-by: Guenter Roeck <linux@roeck-us.net>
Link: https://lore.kernel.org/r/20190812200906.31344-12-andrew.smirnov@gmail.com
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Wim Van Sebroeck <wim@linux-watchdog.org>
drivers/watchdog/ziirave_wdt.c

index 69694f2836d7560127d700cf8b4f65cf56d6b282..38cf3ca329d75cb427e34c678a4214614557b7ef 100644 (file)
@@ -21,6 +21,8 @@
 #include <linux/version.h>
 #include <linux/watchdog.h>
 
+#include <asm/unaligned.h>
+
 #define ZIIRAVE_TIMEOUT_MIN    3
 #define ZIIRAVE_TIMEOUT_MAX    255
 #define ZIIRAVE_TIMEOUT_DEFAULT        30
@@ -198,8 +200,7 @@ static int ziirave_firm_set_read_addr(struct watchdog_device *wdd, u16 addr)
        struct i2c_client *client = to_i2c_client(wdd->parent);
        u8 address[2];
 
-       address[0] = addr & 0xff;
-       address[1] = (addr >> 8) & 0xff;
+       put_unaligned_le16(addr, address);
 
        return i2c_smbus_write_block_data(client,
                                          ZIIRAVE_CMD_DOWNLOAD_SET_READ_ADDR,
@@ -263,8 +264,7 @@ static int __ziirave_firm_write_pkt(struct watchdog_device *wdd,
        /* Packet length */
        packet[0] = len;
        /* Packet address */
-       packet[1] = addr16 & 0xff;
-       packet[2] = (addr16 & 0xff00) >> 8;
+       put_unaligned_le16(addr16, packet + 1);
 
        memcpy(packet + 3, data, len);
        memset(packet + 3 + len, 0, ZIIRAVE_FIRM_PKT_DATA_SIZE - len);