summaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2011-08-17 15:18:33 -0700
committerSimon Glass <sjg@chromium.org>2011-09-13 13:47:08 -0700
commitb7f199f50179894f7ba19820a9f7c7e0a35493f8 (patch)
tree03330e9dd7847b7d2f1e1eef00fa11915b0d9c70 /common
parentedd48fd3df33f7a7668d6cb469a3bf0c72637031 (diff)
fdt: Only support serial if selected by CONFIG
This fixes what would become a build break if a board did not have NS16550 serial support included. T30 needs this change. Change-Id: I6e06dd7f7fce7e475c0cbe48edae8d068ca5b7e8 Reviewed-on: http://gerrit.chromium.org/gerrit/7637 Reviewed-by: Simon Glass <sjg@chromium.org> Tested-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'common')
-rw-r--r--common/fdt_decode.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/common/fdt_decode.c b/common/fdt_decode.c
index 272b47390c..b22bfd314e 100644
--- a/common/fdt_decode.c
+++ b/common/fdt_decode.c
@@ -327,6 +327,7 @@ int fdt_decode_next_alias(const void *blob, const char *name,
return err ? -FDT_ERR_MISSING : node;
}
+#ifdef CONFIG_SYS_NS16550
int fdt_decode_get_spi_switch(const void *blob, struct fdt_spi_uart *config)
{
int node, uart_node;
@@ -350,6 +351,7 @@ int fdt_decode_get_spi_switch(const void *blob, struct fdt_spi_uart *config)
config->gpio = fdt32_to_cpu(gpio[1]);
return 0;
}
+#endif
int fdt_decode_memory(const void *blob, struct fdt_memory *config)
{