mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 07:57:21 +00:00
8092e9d0e0
Disable the FMan mEMAC 5 and 6 nodes from the fdt since they are not available under the supported RCW. Also disable the associated "fsl,dpa-ethernet" nodes that reference them. This is a simplified version of the fdt_fixup_fman_ethernet call for use under DM_ETH. Signed-off-by: Camelia Groza <camelia.groza@nxp.com> Reviewed-by: Priyanka Jain <priyanka.jain@nxp.com>
14 lines
315 B
C
14 lines
315 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Copyright 2014 Freescale Semiconductor, Inc.
|
|
* Copyright 2021 NXP
|
|
*/
|
|
|
|
#ifndef __CORENET_DS_H__
|
|
#define __CORENET_DS_H__
|
|
|
|
void fdt_fixup_board_enet(void *blob);
|
|
void pci_of_setup(void *blob, struct bd_info *bd);
|
|
void fdt_fixup_board_fman_ethernet(void *blob);
|
|
|
|
#endif
|