diff options
| author | Lothar Felten <[email protected]> | 2018-07-13 10:45:26 +0200 |
|---|---|---|
| committer | Jagan Teki <[email protected]> | 2018-07-16 12:27:27 +0530 |
| commit | 2f157436335a5507bfeda8097e3f687a31e941ce (patch) | |
| tree | 9b60ff4b7615f0ed80ae2350c310199ffc01f85c /drivers | |
| parent | 30e71ad5b7117d17b547aa39b9d17cf4706f629a (diff) | |
net: sun8i-emac: fix printing NULL character
If the variant is not set and therefore NULL, do not attempt to print
the variant.
Signed-off-by: Lothar Felten <[email protected]>
Acked-by: Maxime Ripard <[email protected]>
Acked-by: Joe Hershberger <[email protected]>
Reviewed-by: Jagan Teki <[email protected]>
Tested-by: Jagan Teki <[email protected]>
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/net/sun8i_emac.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/net/sun8i_emac.c b/drivers/net/sun8i_emac.c index 1f5c630e023..23c4d68f778 100644 --- a/drivers/net/sun8i_emac.c +++ b/drivers/net/sun8i_emac.c @@ -843,8 +843,7 @@ static int sun8i_emac_eth_ofdata_to_platdata(struct udevice *dev) priv->variant = dev_get_driver_data(dev); if (!priv->variant) { - printf("%s: Missing variant '%s'\n", __func__, - (char *)priv->variant); + printf("%s: Missing variant\n", __func__); return -EINVAL; } |
