Commit 380960c4 authored by Biju Das's avatar Biju Das Committed by Alexandre Belloni

rtc: isl1208: Drop name variable

Drop unused name variable from struct isl1208_config.
Signed-off-by: default avatarBiju Das <biju.das.jz@bp.renesas.com>
Reviewed-by: default avatarGeert Uytterhoeven <geert+renesas@glider.be>
Link: https://lore.kernel.org/r/20230623140948.384762-7-biju.das.jz@bp.renesas.comSigned-off-by: default avatarAlexandre Belloni <alexandre.belloni@bootlin.com>
parent 138f3525
......@@ -79,15 +79,14 @@ enum isl1208_id {
/* Chip capabilities table */
static const struct isl1208_config {
const char name[8];
unsigned int nvmem_length;
unsigned has_tamper:1;
unsigned has_timestamp:1;
} isl1208_configs[] = {
[TYPE_ISL1208] = { "isl1208", 2, false, false },
[TYPE_ISL1209] = { "isl1209", 2, true, false },
[TYPE_ISL1218] = { "isl1218", 8, false, false },
[TYPE_ISL1219] = { "isl1219", 2, true, true },
[TYPE_ISL1208] = { 2, false, false },
[TYPE_ISL1209] = { 2, true, false },
[TYPE_ISL1218] = { 8, false, false },
[TYPE_ISL1219] = { 2, true, true },
};
static const struct i2c_device_id isl1208_id[] = {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment