@@ -6,7 +6,6 @@
# CPU-specific support
obj-$(CONFIG_SOC_AT91RM9200) += at91rm9200.o
obj-$(CONFIG_SOC_AT91SAM9) += at91sam9.o
-obj-$(CONFIG_SOC_LAN966X) += lan966x.o
obj-$(CONFIG_SOC_SAM9X60) += sam9x60.o
obj-$(CONFIG_SOC_SAMA5) += sama5.o
obj-$(CONFIG_SOC_SAMA7) += sama7.o
deleted file mode 100644
@@ -1,25 +0,0 @@
-// SPDX-License-Identifier: GPL-2.0-or-later
-/*
- * Setup code for LAN966X
- *
- * Copyright (C) 2021 Microchip Technology, Inc. and its subsidiaries
- *
- */
-
-#include <linux/of.h>
-#include <linux/of_platform.h>
-
-#include <asm/mach/arch.h>
-#include <asm/system_misc.h>
-
-#include "generic.h"
-
-static const char *const lan966x_dt_board_compat[] __initconst = {
- "microchip,lan966x",
- NULL
-};
-
-DT_MACHINE_START(lan966x_dt, "Microchip LAN966X")
- /* Maintainer: Microchip */
- .dt_compat = lan966x_dt_board_compat,
-MACHINE_END
Remove Makefile entry and lan966x.c file as it is not required. Signed-off-by: Kavyasree Kotagiri <kavyasree.kotagiri@microchip.com> --- arch/arm/mach-at91/Makefile | 1 - arch/arm/mach-at91/lan966x.c | 25 ------------------------- 2 files changed, 26 deletions(-) delete mode 100644 arch/arm/mach-at91/lan966x.c