commit | 66c28618494641151053c4d5ff6c1a27bec8de49 | [log] [tgz] |
---|---|---|
author | Hanyuan Zhao <hanyuan-z@qq.com> | Fri Aug 09 16:56:56 2024 +0800 |
committer | Tom Rini <trini@konsulko.com> | Sun Oct 27 10:15:29 2024 -0600 |
tree | 6ed0ee6643cc676d7de0e9981da0bc4f5d2edbd6 | |
parent | 9bea14b802c4412d2859e8a5ea929dd056e86907 [diff] |
net: dc2114x: set the card number to start at zero Otherwise the number might get kind of weird. Signed-off-by: Hanyuan Zhao <zhaohy22@mails.tsinghua.edu.cn>
diff --git a/drivers/net/dc2114x.c b/drivers/net/dc2114x.c index 7f07154..cf9f781 100644 --- a/drivers/net/dc2114x.c +++ b/drivers/net/dc2114x.c
@@ -561,7 +561,7 @@ static int dc2114x_bind(struct udevice *dev) { - static int card_number; + static int card_number = 0; char name[16]; sprintf(name, "dc2114x#%u", card_number++);