1
0
This repository has been archived on 2025-07-31. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
orange_kernel/drivers/net/dsa/qca/qca8k_leds.h
2025-03-18 09:50:07 +08:00

17 lines
333 B
C

/* SPDX-License-Identifier: GPL-2.0-only */
#ifndef __QCA8K_LEDS_H
#define __QCA8K_LEDS_H
/* Leds Support function */
#ifdef CONFIG_NET_DSA_QCA8K_LEDS_SUPPORT
int qca8k_setup_led_ctrl(struct qca8k_priv *priv);
#else
static inline int qca8k_setup_led_ctrl(struct qca8k_priv *priv)
{
return 0;
}
#endif
#endif /* __QCA8K_LEDS_H */