mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH 1/3] e1000: mtd: remove needless error checking for device parameter
@ 2024-07-01  7:35 Ahmad Fatoum
  2024-07-01  7:35 ` [PATCH 2/3] PWM: core: " Ahmad Fatoum
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Ahmad Fatoum @ 2024-07-01  7:35 UTC (permalink / raw)
  To: barebox; +Cc: Ahmad Fatoum

The invm device is specifically created for the EEPROM, so adding a
parameter should not result in a name clash.

This leaves only -ENOMEM as possible error. As the driver is usable
without EEPROM being writable, don't propagate the error.

Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de>
---
 drivers/net/e1000/mtd.c | 10 ++--------
 1 file changed, 2 insertions(+), 8 deletions(-)

diff --git a/drivers/net/e1000/mtd.c b/drivers/net/e1000/mtd.c
index 50883fc2a602..b2643dcf4340 100644
--- a/drivers/net/e1000/mtd.c
+++ b/drivers/net/e1000/mtd.c
@@ -702,7 +702,6 @@ static int e1000_register_invm(struct e1000_hw *hw)
 {
 	int ret;
 	u16 word;
-	struct param_d *p;
 
 	if (e1000_eeprom_valid(hw)) {
 		ret = e1000_read_eeprom(hw, 0x0a, 1, &word);
@@ -732,15 +731,10 @@ static int e1000_register_invm(struct e1000_hw *hw)
 		return ret;
 	}
 
-	p = dev_add_param_int(&hw->invm.dev, "lock", e1000_invm_set_lock,
+	dev_add_param_int(&hw->invm.dev, "lock", e1000_invm_set_lock,
 			      NULL, &hw->invm.line, "%u", hw);
-	if (IS_ERR(p)) {
-		unregister_device(&hw->invm.dev);
-		devfs_remove(&hw->invm.cdev);
-		ret = PTR_ERR(p);
-	}
 
-	return ret;
+	return 0;
 }
 
 /*
-- 
2.39.2




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

end of thread, other threads:[~2024-07-01  9:34 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-07-01  7:35 [PATCH 1/3] e1000: mtd: remove needless error checking for device parameter Ahmad Fatoum
2024-07-01  7:35 ` [PATCH 2/3] PWM: core: " Ahmad Fatoum
2024-07-01  7:35 ` [PATCH 3/3] fpga: bridge: " Ahmad Fatoum
2024-07-01  9:33 ` [PATCH 1/3] e1000: mtd: " Sascha Hauer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox