提交 1f9fa521 编写于 作者: M Michael Hennerich 提交者: Linus Torvalds

drivers/misc/ad525x_dpot.c: fix typo in spi write16 and write24 transfer counts

This is a bug fix.  Some SPI connected devices using 16/24 bit accesses,
previously failed, now work.

This typo slipped in after testing, during some restructuring.
Signed-off-by: NMichael Hennerich <michael.hennerich@analog.com>
Cc: Mike Frysinger <vapier@gentoo.org>
Cc: Chris Verges <chrisv@cyberswitching.com>
Cc: <stable@kernel.org>
Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
上级 6915e04f
...@@ -53,13 +53,13 @@ static int write8(void *client, u8 val) ...@@ -53,13 +53,13 @@ static int write8(void *client, u8 val)
static int write16(void *client, u8 reg, u8 val) static int write16(void *client, u8 reg, u8 val)
{ {
u8 data[2] = {reg, val}; u8 data[2] = {reg, val};
return spi_write(client, data, 1); return spi_write(client, data, 2);
} }
static int write24(void *client, u8 reg, u16 val) static int write24(void *client, u8 reg, u16 val)
{ {
u8 data[3] = {reg, val >> 8, val}; u8 data[3] = {reg, val >> 8, val};
return spi_write(client, data, 1); return spi_write(client, data, 3);
} }
static int read8(void *client) static int read8(void *client)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册