diff options
author | Hannes Schmelzer <oe5hpm@oevsv.at> | 2016-06-22 12:36:14 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-06-24 17:24:40 -0400 |
commit | a4d799939fdb08ce4d7464578734316cdd0bf452 (patch) | |
tree | 3753cc6fce9bbdda26410bca07afcd334e30ba4f /board | |
parent | 2290fe06421720d1c54523a9acf1052181bc6e87 (diff) |
board/BuR: rename kwb board to brxre1
Rename B&R kwb board to brxre1
Signed-off-by: Hannes Schmelzer <oe5hpm@oevsv.at>
Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'board')
-rw-r--r-- | board/BuR/brxre1/Kconfig (renamed from board/BuR/kwb/Kconfig) | 6 | ||||
-rw-r--r-- | board/BuR/brxre1/MAINTAINERS | 6 | ||||
-rw-r--r-- | board/BuR/brxre1/Makefile (renamed from board/BuR/kwb/Makefile) | 0 | ||||
-rw-r--r-- | board/BuR/brxre1/board.c (renamed from board/BuR/kwb/board.c) | 6 | ||||
-rw-r--r-- | board/BuR/brxre1/mux.c (renamed from board/BuR/kwb/mux.c) | 0 | ||||
-rw-r--r-- | board/BuR/kwb/MAINTAINERS | 6 |
6 files changed, 12 insertions, 12 deletions
diff --git a/board/BuR/kwb/Kconfig b/board/BuR/brxre1/Kconfig index 4beefbf7714..389e523f601 100644 --- a/board/BuR/kwb/Kconfig +++ b/board/BuR/brxre1/Kconfig @@ -1,7 +1,7 @@ -if TARGET_KWB +if TARGET_BRXRE1 config SYS_BOARD - default "kwb" + default "brxre1" config SYS_VENDOR default "BuR" @@ -10,6 +10,6 @@ config SYS_SOC default "am33xx" config SYS_CONFIG_NAME - default "kwb" + default "brxre1" endif diff --git a/board/BuR/brxre1/MAINTAINERS b/board/BuR/brxre1/MAINTAINERS new file mode 100644 index 00000000000..a10d9c1d714 --- /dev/null +++ b/board/BuR/brxre1/MAINTAINERS @@ -0,0 +1,6 @@ +BRXRE1 BOARD +M: Hannes Schmelzer <hannes.schmelzer@br-automation.com> +S: Maintained +F: board/BuR/brxre1/ +F: include/configs/brxre1.h +F: configs/brxre1_defconfig diff --git a/board/BuR/kwb/Makefile b/board/BuR/brxre1/Makefile index 782664c36e5..782664c36e5 100644 --- a/board/BuR/kwb/Makefile +++ b/board/BuR/brxre1/Makefile diff --git a/board/BuR/kwb/board.c b/board/BuR/brxre1/board.c index ad74ff299cb..f4bfa410cc6 100644 --- a/board/BuR/kwb/board.c +++ b/board/BuR/brxre1/board.c @@ -1,7 +1,7 @@ /* * board.c * - * Board functions for B&R KWB Board + * Board functions for B&R BRXRE1 Board * * Copyright (C) 2013 Hannes Schmelzer <oe5hpm@oevsv.at> * Bernecker & Rainer Industrieelektronik GmbH - http://www.br-automation.com @@ -101,7 +101,7 @@ void am33xx_spl_board_init(void) */ u32 *const clk_domains[] = { 0 }; - u32 *const clk_modules_kwbspecific[] = { + u32 *const clk_modules_xre1specific[] = { &cmwkup->wkup_adctscctrl, &cmper->spi1clkctrl, &cmper->dcan0clkctrl, @@ -113,7 +113,7 @@ void am33xx_spl_board_init(void) &cmper->lcdcclkstctrl, 0 }; - do_enable_clocks(clk_domains, clk_modules_kwbspecific, 1); + do_enable_clocks(clk_domains, clk_modules_xre1specific, 1); /* setup LCD-Pixel Clock */ writel(0x2, CM_DPLL + 0x34); /* power-OFF LCD-Display */ diff --git a/board/BuR/kwb/mux.c b/board/BuR/brxre1/mux.c index 40224f76f67..40224f76f67 100644 --- a/board/BuR/kwb/mux.c +++ b/board/BuR/brxre1/mux.c diff --git a/board/BuR/kwb/MAINTAINERS b/board/BuR/kwb/MAINTAINERS deleted file mode 100644 index ca7d329144d..00000000000 --- a/board/BuR/kwb/MAINTAINERS +++ /dev/null @@ -1,6 +0,0 @@ -KWB BOARD -M: Hannes Schmelzer <hannes.schmelzer@br-automation.com> -S: Maintained -F: board/BuR/kwb/ -F: include/configs/kwb.h -F: configs/kwb_defconfig |