mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-16 05:26:07 +00:00
watchdog: ziirave_wdt: Make use of put_unaligned_le16
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>
This commit is contained in:
parent
10f98fef7b
commit
08f980a8ff
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user