]> Git Repo - J-u-boot.git/blame - drivers/phy/nop-phy.c
SPDX: Convert all of our single license tags to Linux Kernel style
[J-u-boot.git] / drivers / phy / nop-phy.c
CommitLineData
83d290c5 1// SPDX-License-Identifier: GPL-2.0+
3b63db37
JJH
2/*
3 * Copyright (C) 2017 Texas Instruments Incorporated - http://www.ti.com/
4 * Written by Jean-Jacques Hiblot <[email protected]>
3b63db37
JJH
5 */
6
7#include <common.h>
8#include <dm.h>
9#include <dm/device.h>
10#include <generic-phy.h>
11
12static const struct udevice_id nop_phy_ids[] = {
13 { .compatible = "nop-phy" },
14 { }
15};
16
17static struct phy_ops nop_phy_ops = {
18};
19
20U_BOOT_DRIVER(nop_phy) = {
21 .name = "nop_phy",
22 .id = UCLASS_PHY,
23 .of_match = nop_phy_ids,
24 .ops = &nop_phy_ops,
25};
This page took 0.092821 seconds and 4 git commands to generate.