OSDN Git Service

i2c: add param sanity check to i2c_transfer()
authorArd Biesheuvel <ard.biesheuvel@linaro.org>
Tue, 3 Apr 2018 19:11:50 +0000 (21:11 +0200)
committerWolfram Sang <wsa@the-dreams.de>
Wed, 11 Apr 2018 21:33:46 +0000 (23:33 +0200)
commit1eace8344c02c625ee99cc3ffa50187ded2c87b5
treeb8aabc3206f9064036a78593069ddf824f095aa2
parent090cecc669d4336a6ce2eeaa3074b628d3fb7678
i2c: add param sanity check to i2c_transfer()

The API docs describe i2c_transfer() as taking a pointer to an array
of i2c_msg containing at least 1 entry, but leaves it to the individual
drivers to sanity check the msgs and num parameters. Let's do this in
core code instead.

Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
[wsa: changed '<= 0' to '< 1']
Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
drivers/i2c/i2c-core-base.c