Skip to content

Commit 6ef0c33

Browse files
dtorgregkh
authored andcommitted
auxdisplay: ht16k33: use le16_to_cpup() to fetch LE16 data
The data read from the device is 3 little-endian words, so let's annotate them as such and use le16_to_cpu() to convert them to host endianness - it might turn out to be a bit more performant, and it expresses the conversion more clearly. Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent 750100a commit 6ef0c33

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

drivers/auxdisplay/ht16k33.c

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -254,18 +254,22 @@ static bool ht16k33_keypad_scan(struct ht16k33_keypad *keypad)
254254
{
255255
const unsigned short *keycodes = keypad->dev->keycode;
256256
u16 new_state[HT16K33_MATRIX_KEYPAD_MAX_COLS];
257-
u8 data[HT16K33_MATRIX_KEYPAD_MAX_COLS * 2];
257+
__le16 data[HT16K33_MATRIX_KEYPAD_MAX_COLS];
258258
unsigned long bits_changed;
259259
int row, col, code;
260+
int rc;
260261
bool pressed = false;
261262

262-
if (i2c_smbus_read_i2c_block_data(keypad->client, 0x40, 6, data) != 6) {
263-
dev_err(&keypad->client->dev, "Failed to read key data\n");
263+
rc = i2c_smbus_read_i2c_block_data(keypad->client, 0x40,
264+
sizeof(data), (u8 *)data);
265+
if (rc != sizeof(data)) {
266+
dev_err(&keypad->client->dev,
267+
"Failed to read key data, rc=%d\n", rc);
264268
return false;
265269
}
266270

267271
for (col = 0; col < keypad->cols; col++) {
268-
new_state[col] = (data[col * 2 + 1] << 8) | data[col * 2];
272+
new_state[col] = le16_to_cpu(data[col]);
269273
if (new_state[col])
270274
pressed = true;
271275
bits_changed = keypad->last_key_state[col] ^ new_state[col];

0 commit comments

Comments
 (0)