mirror of
https://github.com/u-boot/u-boot.git
synced 2024-11-26 05:34:30 +08:00
linux/compat.h: Add netdev_### log macros
Currently there are two ethernet drivers (mvneta.c and mvpp2.c) that has netdev_### (eg: netdev_dbg) log macros defined in its own driver file. This adds these log macros in a common place linux/compat.h. Signed-off-by: Bin Meng <bmeng.cn@gmail.com> Acked-by: Joe Hershberger <joe.hershberger@ni.com>
This commit is contained in:
parent
145663991f
commit
b06d76f9ae
@ -34,14 +34,6 @@ DECLARE_GLOBAL_DATA_PTR;
|
||||
# error Marvell mvneta requires PHYLIB
|
||||
#endif
|
||||
|
||||
/* Some linux -> U-Boot compatibility stuff */
|
||||
#define netdev_err(dev, fmt, args...) \
|
||||
printf(fmt, ##args)
|
||||
#define netdev_warn(dev, fmt, args...) \
|
||||
printf(fmt, ##args)
|
||||
#define netdev_info(dev, fmt, args...) \
|
||||
printf(fmt, ##args)
|
||||
|
||||
#define CONFIG_NR_CPUS 1
|
||||
#define ETH_HLEN 14 /* Total octets in header */
|
||||
|
||||
|
@ -35,16 +35,6 @@
|
||||
|
||||
DECLARE_GLOBAL_DATA_PTR;
|
||||
|
||||
/* Some linux -> U-Boot compatibility stuff */
|
||||
#define netdev_err(dev, fmt, args...) \
|
||||
printf(fmt, ##args)
|
||||
#define netdev_warn(dev, fmt, args...) \
|
||||
printf(fmt, ##args)
|
||||
#define netdev_info(dev, fmt, args...) \
|
||||
printf(fmt, ##args)
|
||||
#define netdev_dbg(dev, fmt, args...) \
|
||||
printf(fmt, ##args)
|
||||
|
||||
#define ETH_ALEN 6 /* Octets in one ethernet addr */
|
||||
|
||||
#define __verify_pcpu_ptr(ptr) \
|
||||
|
@ -43,6 +43,25 @@ extern struct p_current *current;
|
||||
#define dev_warn(dev, fmt, args...) \
|
||||
printf(fmt, ##args)
|
||||
|
||||
#define netdev_emerg(dev, fmt, args...) \
|
||||
printf(fmt, ##args)
|
||||
#define netdev_alert(dev, fmt, args...) \
|
||||
printf(fmt, ##args)
|
||||
#define netdev_crit(dev, fmt, args...) \
|
||||
printf(fmt, ##args)
|
||||
#define netdev_err(dev, fmt, args...) \
|
||||
printf(fmt, ##args)
|
||||
#define netdev_warn(dev, fmt, args...) \
|
||||
printf(fmt, ##args)
|
||||
#define netdev_notice(dev, fmt, args...) \
|
||||
printf(fmt, ##args)
|
||||
#define netdev_info(dev, fmt, args...) \
|
||||
printf(fmt, ##args)
|
||||
#define netdev_dbg(dev, fmt, args...) \
|
||||
debug(fmt, ##args)
|
||||
#define netdev_vdbg(dev, fmt, args...) \
|
||||
debug(fmt, ##args)
|
||||
|
||||
#define GFP_ATOMIC ((gfp_t) 0)
|
||||
#define GFP_KERNEL ((gfp_t) 0)
|
||||
#define GFP_NOFS ((gfp_t) 0)
|
||||
|
Loading…
Reference in New Issue
Block a user