u-boot-brain/drivers/net/qe/dm_qe_uec.h

23 lines
425 B
C
Raw Normal View History

/* SPDX-License-Identifier: GPL-2.0+
*
* QE UEC ethernet controller driver
*
* based on drivers/qe/uec.c from NXP
*
* Copyright (C) 2020 Heiko Schocher <hs@denx.de>
*/
#ifndef _DM_QE_UEC_H
#define _DM_QE_UEC_H
#define qe_uec_dbg(dev, fmt, args...) debug("%s:" fmt, dev->name, ##args)
#include "uec.h"
/* QE UEC private structure */
struct qe_uec_priv {
struct uec_priv *uec;
struct phy_device *phydev;
};
#endif