All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH linux dev-6.18] eeprom: ee1004: Fix build error
@ 2026-04-29  7:06 Konstantin Aladyshev
  2026-04-29  7:13 ` [PATCH linux dev-6.18 v2] " Konstantin Aladyshev
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Konstantin Aladyshev @ 2026-04-29  7:06 UTC (permalink / raw)
  To: openbmc, joel, andrew; +Cc: Konstantin Aladyshev

Currently driver compilation fails because of the undeclared
'ee1004_groups' variable.
This variable was deleted in the commit
79d0df36b541 ("eeprom: ee1004: Add nvmem support")
but by mistake was used in the commit
1b9ab93850ac ("eeprom: ee1004: Add OF matching support").
Remove 'ee1004_groups' usage from the driver to fix the compilation.

Fixes: 79d0df36b541 ("eeprom: ee1004: Add nvmem support")

Signed-off-by: Konstantin Aladyshev <aladyshev22@gmail.com>
---
 drivers/misc/eeprom/ee1004.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/drivers/misc/eeprom/ee1004.c b/drivers/misc/eeprom/ee1004.c
index 639615749e2f..e1a571b77de9 100644
--- a/drivers/misc/eeprom/ee1004.c
+++ b/drivers/misc/eeprom/ee1004.c
@@ -347,7 +347,6 @@ static int ee1004_probe(struct i2c_client *client)
 static struct i2c_driver ee1004_driver = {
 	.driver = {
 		.name = "ee1004",
-		.dev_groups = ee1004_groups,
 		.of_match_table = ee1004_of_match,
 	},
 	.probe = ee1004_probe,
-- 
2.43.0



^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2026-05-18 14:09 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-04-29  7:06 [PATCH linux dev-6.18] eeprom: ee1004: Fix build error Konstantin Aladyshev
2026-04-29  7:13 ` [PATCH linux dev-6.18 v2] " Konstantin Aladyshev
2026-05-06  6:52 ` [PATCH linux dev-6.18] " Johannes Truschnigg
2026-05-06 15:30   ` Tan Siewert
2026-05-07  4:32     ` Konstantin Aladyshev
2026-05-18 14:09 ` Andrew Jeffery

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.