From c0afc799fb9a19a11f651596fe23b4b755593887 Mon Sep 17 00:00:00 2001 From: Sascha Hauer Date: Wed, 14 Dec 2022 13:35:09 +0100 Subject: Rename struct device_d to device The '_d' suffix was originally introduced in case we want to import Linux struct device as a separate struct into barebox. Over time it became clear that this won't happen, instead barebox struct device_d is basically the same as Linux struct device. Rename the struct name accordingly to make porting Linux code easier. Signed-off-by: Sascha Hauer Reviewed-by: Marco Felsch Link: https://lore.barebox.org/20221214123512.189688-3-s.hauer@pengutronix.de Signed-off-by: Sascha Hauer --- net/eth.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'net') diff --git a/net/eth.c b/net/eth.c index 82fd629905..863d0a0466 100644 --- a/net/eth.c +++ b/net/eth.c @@ -385,7 +385,7 @@ static const char * const eth_mode_names[] = { int eth_register(struct eth_device *edev) { - struct device_d *dev = &edev->dev; + struct device *dev = &edev->dev; unsigned char ethaddr[ETH_ALEN]; int ret, found = 0; -- cgit v1.2.1