mirror of
https://github.com/torvalds/linux.git
synced 2024-11-28 07:01:32 +00:00
c93d8b4574
If we don't provide the .map_io() callback, the LL debug defines will kick in anyway, so delete the UART debug map as well. Signed-off-by: Linus Walleij <linus.walleij@linaro.org> Link: https://lore.kernel.org/r/20221121221015.1454948-1-linus.walleij@linaro.org Signed-off-by: Arnd Bergmann <arnd@arndb.de>
23 lines
507 B
C
23 lines
507 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* IXP4xx Device Tree boot support
|
|
*/
|
|
#include <asm/mach/arch.h>
|
|
|
|
/*
|
|
* We handle 4 different SoC families. These compatible strings are enough
|
|
* to provide the core so that different boards can add their more detailed
|
|
* specifics.
|
|
*/
|
|
static const char *ixp4xx_of_board_compat[] = {
|
|
"intel,ixp42x",
|
|
"intel,ixp43x",
|
|
"intel,ixp45x",
|
|
"intel,ixp46x",
|
|
NULL,
|
|
};
|
|
|
|
DT_MACHINE_START(IXP4XX_DT, "IXP4xx (Device Tree)")
|
|
.dt_compat = ixp4xx_of_board_compat,
|
|
MACHINE_END
|