1 /* SPDX-License-Identifier: GPL-2.0+
2  *
3  * QE UEC ethernet controller driver
4  *
5  * based on drivers/qe/uec.c from NXP
6  *
7  * Copyright (C) 2020 Heiko Schocher <hs@denx.de>
8  */
9 
10 #ifndef _DM_QE_UEC_H
11 #define _DM_QE_UEC_H
12 
13 #define qe_uec_dbg(dev, fmt, args...)	debug("%s:" fmt, dev->name, ##args)
14 
15 #include "uec.h"
16 
17 /* QE UEC private structure */
18 struct qe_uec_priv {
19 	struct uec_priv *uec;
20 	struct phy_device *phydev;
21 };
22 #endif
23