mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
5f588f831b
As this is only useful when booting with ATAGs, which are now largely disabled, remove this value for the remaining platforms. We have a few places in the code that had been testing for MACH_TYPE as a sort of internal logic. Update those to use different but still correct CONFIG symbols. Cc: Phil Sutter <phil@nwl.cc> Signed-off-by: Tom Rini <trini@konsulko.com>
23 lines
482 B
C
23 lines
482 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* (C) Copyright 2010
|
|
* Texas Instruments Incorporated.
|
|
* Aneesh V <aneesh@ti.com>
|
|
* Steve Sakoman <steve@sakoman.com>
|
|
*
|
|
* Configuration settings for the TI SDP4430 board.
|
|
* See ti_omap4_common.h for OMAP4 common part
|
|
*/
|
|
|
|
#ifndef __CONFIG_SDP4430_H
|
|
#define __CONFIG_SDP4430_H
|
|
|
|
/*
|
|
* High Level Configuration Options
|
|
*/
|
|
|
|
#include <configs/ti_omap4_common.h>
|
|
|
|
/* ENV related config options */
|
|
|
|
#endif /* __CONFIG_SDP4430_H */
|