diff options
author | Sergei Antonov | 2023-02-03 22:09:02 +0300 |
---|---|---|
committer | Tom Rini | 2023-02-10 13:41:07 -0500 |
commit | e9a1d8bfc95dd971426fdb6ee951040c9f2bbcea (patch) | |
tree | 623f89f8766c82efd20ce200f517748db4fb4aa7 /drivers | |
parent | e8779962898e946687d4ef427188520f88e69152 (diff) |
net: ftmac100: change driver name from nds32_mac to ftmac100
So it will be named similarly to the related ftgmac100 driver.
The old name 'nds32_mac' is not referred to anywhere in U-Boot.
Signed-off-by: Sergei Antonov <saproj@gmail.com>
Reviewed-by: Ramon Fried <rfried.dev@gmail.com>
Reviewed-by: Rick Chen <rick@andestech.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/net/ftmac100.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ftmac100.c b/drivers/net/ftmac100.c index f710c271c64..7c89d7f67b8 100644 --- a/drivers/net/ftmac100.c +++ b/drivers/net/ftmac100.c @@ -348,7 +348,7 @@ static const struct udevice_id ftmac100_ids[] = { }; U_BOOT_DRIVER(ftmac100) = { - .name = "nds32_mac", + .name = "ftmac100", .id = UCLASS_ETH, .of_match = ftmac100_ids, .bind = ftmac100_bind, |