]> git.ipfire.org Git - thirdparty/u-boot.git/blame - arch/arm/mach-rmobile/emac.c
SPDX: Convert all of our single license tags to Linux Kernel style
[thirdparty/u-boot.git] / arch / arm / mach-rmobile / emac.c
CommitLineData
83d290c5 1// SPDX-License-Identifier: GPL-2.0+
2d61084b
NI
2/*
3 * RMOBILE EtherMAC initialization.
4 *
5 * Copyright (C) 2012 Renesas Solutions Corp.
6 * Copyright (C) 2012 Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
2d61084b
NI
7 */
8
9#include <common.h>
1221ce45 10#include <linux/errno.h>
2d61084b
NI
11#include <netdev.h>
12
13int cpu_eth_init(bd_t *bis)
14{
15 int ret = -ENODEV;
16#ifdef CONFIG_SH_ETHER
17 ret = sh_eth_initialize(bis);
18#endif
19 return ret;
20}