mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 13:14:27 +00:00
23 lines
425 B
C
23 lines
425 B
C
|
/* 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
|