mirror of
https://github.com/u-boot/u-boot.git
synced 2025-01-08 03:33:27 +08:00
MX51: Register definitions cannot be included in board config file
Due to wrong dependencies, it is not possible to include imx_regs.h inside the board configuration file. Signed-off-by: Stefano Babic <sbabic@denx.de>
This commit is contained in:
parent
2f721d1733
commit
f3554dfdd9
@ -23,9 +23,6 @@
|
||||
#ifndef __ASM_ARCH_MXC_MX51_H__
|
||||
#define __ASM_ARCH_MXC_MX51_H__
|
||||
|
||||
#define __REG(x) (*((volatile u32 *)(x)))
|
||||
#define __REG16(x) (*((volatile u16 *)(x)))
|
||||
#define __REG8(x) (*((volatile u8 *)(x)))
|
||||
/*
|
||||
* IRAM
|
||||
*/
|
||||
@ -207,7 +204,12 @@
|
||||
#define BOARD_REV_1_0 0x0
|
||||
#define BOARD_REV_2_0 0x1
|
||||
|
||||
#ifndef __ASSEMBLY__
|
||||
#if !(defined(__KERNEL_STRICT_NAMES) || defined(__ASSEMBLY__))
|
||||
#include <asm/types.h>
|
||||
|
||||
#define __REG(x) (*((volatile u32 *)(x)))
|
||||
#define __REG16(x) (*((volatile u16 *)(x)))
|
||||
#define __REG8(x) (*((volatile u8 *)(x)))
|
||||
|
||||
struct clkctl {
|
||||
u32 ccr;
|
||||
|
Loading…
Reference in New Issue
Block a user