diff options
author | TsiChungLiew <Tsi-Chung.Liew@freescale.com> | 2007-07-05 23:17:36 -0500 |
---|---|---|
committer | John Rigby <jrigby@freescale.com> | 2007-07-10 14:29:09 -0600 |
commit | 2bd806fe4fc23958b8f78778199e7a6e3f8f6ad5 (patch) | |
tree | c404c255fa6625bbdcd706c63d78214bcb7c613b | |
parent | f2208fbc2eb9de3f4285bfaa021c6ebae16c9b0e (diff) | |
download | u-boot-imx-2bd806fe4fc23958b8f78778199e7a6e3f8f6ad5.zip u-boot-imx-2bd806fe4fc23958b8f78778199e7a6e3f8f6ad5.tar.gz u-boot-imx-2bd806fe4fc23958b8f78778199e7a6e3f8f6ad5.tar.bz2 |
Rename mcfserial.c. Update include header
Renamed mcfserial.c to mcfuart.c. Modified Makefile for mcfuart.o from mcfserial.o. Replace immap_5329.h and m5329.h to immap.h
Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
-rw-r--r-- | drivers/serial/Makefile | 2 | ||||
-rw-r--r-- | drivers/serial/mcfuart.c (renamed from drivers/serial/mcfserial.c) | 5 |
2 files changed, 4 insertions, 3 deletions
diff --git a/drivers/serial/Makefile b/drivers/serial/Makefile index 2208a08..93c68dd 100644 --- a/drivers/serial/Makefile +++ b/drivers/serial/Makefile @@ -25,7 +25,7 @@ include $(TOPDIR)/config.mk LIB := $(obj)libserial.a -COBJS := mcfserial.o +COBJS := mcfuart.o SRCS := $(COBJS:.o=.c) OBJS := $(addprefix $(obj),$(COBJS)) diff --git a/drivers/serial/mcfserial.c b/drivers/serial/mcfuart.c index a8ca78a..f54aabe 100644 --- a/drivers/serial/mcfserial.c +++ b/drivers/serial/mcfuart.c @@ -1,5 +1,5 @@ /* - * (C) Copyright 2004, Freescale, Inc + * (C) Copyright 2004-2007 Freescale Semiconductor, Inc. * TsiChung Liew, Tsi-Chung.Liew@freescale.com. * * See file CREDITS for list of people who contributed to this @@ -28,7 +28,8 @@ */ #include <common.h> -#include <asm/mcfuart.h> +#include <asm/immap.h> +#include <asm/uart.h> DECLARE_GLOBAL_DATA_PTR; |