blob: 55ec2fbd263b59a6e5c29c846d4724050562a43e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
// SPDX-License-Identifier: GPL-2.0+
/*
Copyright (c) 2015 Broadcom Corporation
All Rights Reserved
*/
/*
* ephy_led_init.h
*
* Created on: April 2019
* Author: samyon.furman@broadcom.com
*/
#ifndef _EPHY_LED_INIT_H_
#define _EPHY_LED_INIT_H_
#if !defined(EPHY_LED)
static inline
#endif
int ephy_leds_init(void * _leds_info)
#if !defined(EPHY_LED)
{ return 0; }
#endif
;
#endif
|