diff options
author | Simon Glass <sjg@chromium.org> | 2016-07-05 23:10:12 (GMT) |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2016-07-27 20:15:54 (GMT) |
commit | fbfa1aba9181161fe5b38a180f20440a0511c051 (patch) | |
tree | d089cf0f96206621cb4a1911d1f1f504e7a7336a /drivers/net/phy/marvell.c | |
parent | 7f7ddf2a882c13e9a64eae80d1539cc05632a402 (diff) | |
download | u-boot-fbfa1aba9181161fe5b38a180f20440a0511c051.tar.xz |
net: phy: marvell: Add a missing errno.h header
This corrects a build error on zynqmp.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'drivers/net/phy/marvell.c')
-rw-r--r-- | drivers/net/phy/marvell.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/phy/marvell.c b/drivers/net/phy/marvell.c index 58d287b..4eeb0f6 100644 --- a/drivers/net/phy/marvell.c +++ b/drivers/net/phy/marvell.c @@ -8,6 +8,7 @@ */ #include <config.h> #include <common.h> +#include <errno.h> #include <phy.h> #define PHY_AUTONEGOTIATE_TIMEOUT 5000 |