]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
i2c: acorn: fix i2c warning
authorRussell King <rmk+kernel@armlinux.org.uk>
Tue, 11 Jun 2019 16:48:18 +0000 (17:48 +0100)
committerWolfram Sang <wsa@the-dreams.de>
Wed, 12 Jun 2019 10:09:02 +0000 (12:09 +0200)
The Acorn i2c driver (for RiscPC) triggers the "i2c adapter has no name"
warning in the I2C core driver, resulting in the RTC being inaccessible.
Fix this.

Fixes: 2236baa75f70 ("i2c: Sanity checks on adapter registration")
Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>
Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
Cc: stable@kernel.org
drivers/i2c/busses/i2c-acorn.c

index f4a5ae69bf6a48775f9bb58c488eeb158174a797..fa3763e4b3ee26ca470175937e56ac0a75313292 100644 (file)
@@ -81,6 +81,7 @@ static struct i2c_algo_bit_data ioc_data = {
 
 static struct i2c_adapter ioc_ops = {
        .nr                     = 0,
+       .name                   = "ioc",
        .algo_data              = &ioc_data,
 };