mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 13:14:27 +00:00
13 lines
326 B
C
13 lines
326 B
C
|
/* SPDX-License-Identifier: (GPL-2.0+ OR MIT) */
|
||
|
/*
|
||
|
* Copyright (c) 2018 Microsemi Corporation
|
||
|
*/
|
||
|
|
||
|
struct mscc_miim_dev {
|
||
|
void __iomem *regs;
|
||
|
void __iomem *phy_regs;
|
||
|
};
|
||
|
|
||
|
int mscc_miim_read(struct mii_dev *bus, int addr, int devad, int reg);
|
||
|
int mscc_miim_write(struct mii_dev *bus, int addr, int devad, int reg, u16 val);
|