commit d1edce71135cc6d98c0a4b5729774542b676e769 Author: sophgo-forum-service <forum_service@sophgo.com> Date: Fri Mar 15 16:07:33 2024 +0800 [fix] recommend using ssh method to clone repo. [fix] fix sensor driver repo branch name.
22 lines
478 B
C
22 lines
478 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef __ARCH_ORION5X_TSX09_COMMON_H
|
|
#define __ARCH_ORION5X_TSX09_COMMON_H
|
|
|
|
/*
|
|
* QNAP TS-x09 Boards power-off function
|
|
*/
|
|
extern void qnap_tsx09_power_off(void);
|
|
|
|
/*
|
|
* QNAP TS-x09 Boards function to find Ethernet MAC address in flash memory
|
|
*/
|
|
extern void __init qnap_tsx09_find_mac_addr(u32 mem_base, u32 size);
|
|
|
|
/*
|
|
* QNAP TS-x09 Boards ethernet declaration
|
|
*/
|
|
extern struct mv643xx_eth_platform_data qnap_tsx09_eth_data;
|
|
|
|
|
|
#endif
|