mirror of
https://github.com/plappermaul/realtek-doc.git
synced 2025-12-10 07:44:41 +01:00
20 lines
396 B
C
Executable file
20 lines
396 B
C
Executable file
/*
|
|
* SPDX-License-Identifier: GPL-2.0-only
|
|
*
|
|
* Copyright (c) 2023 Realtek Semiconductor Corp. All rights reserved.
|
|
*/
|
|
|
|
#define REALTEK_PHY_ID_RTL8261N 0x001CCAF3
|
|
#define REALTEK_PHY_ID_RTL8264B 0x001CC813
|
|
|
|
#if IS_ENABLED(CONFIG_MACSEC)
|
|
int rtk_macsec_init(struct phy_device *phydev);
|
|
#else
|
|
static inline int rtk_macsec_init(struct phy_device *phydev)
|
|
{
|
|
return 0;
|
|
}
|
|
#endif
|
|
|
|
|
|
|