ARM: davinci: cp-intc: convert all hex numbers to lowercase
Use lowercase letters in hexadecimal numbers in the cp-intc driver as is done in most of the kernel code base. Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com> Reviewed-by: David Lechner <david@lechnology.com> Signed-off-by: Sekhar Nori <nsekhar@ti.com>
This commit is contained in:
parent
b35b55e72c
commit
3b5d1c50ff
|
@ -23,19 +23,19 @@
|
|||
#include <mach/common.h>
|
||||
|
||||
#define DAVINCI_CP_INTC_CTRL 0x04
|
||||
#define DAVINCI_CP_INTC_HOST_CTRL 0x0C
|
||||
#define DAVINCI_CP_INTC_HOST_CTRL 0x0c
|
||||
#define DAVINCI_CP_INTC_GLOBAL_ENABLE 0x10
|
||||
#define DAVINCI_CP_INTC_SYS_STAT_IDX_CLR 0x24
|
||||
#define DAVINCI_CP_INTC_SYS_ENABLE_IDX_SET 0x28
|
||||
#define DAVINCI_CP_INTC_SYS_ENABLE_IDX_CLR 0x2C
|
||||
#define DAVINCI_CP_INTC_SYS_ENABLE_IDX_CLR 0x2c
|
||||
#define DAVINCI_CP_INTC_HOST_ENABLE_IDX_SET 0x34
|
||||
#define DAVINCI_CP_INTC_HOST_ENABLE_IDX_CLR 0x38
|
||||
#define DAVINCI_CP_INTC_PRIO_IDX 0x80
|
||||
#define DAVINCI_CP_INTC_SYS_STAT_CLR(n) (0x0280 + (n << 2))
|
||||
#define DAVINCI_CP_INTC_SYS_ENABLE_CLR(n) (0x0380 + (n << 2))
|
||||
#define DAVINCI_CP_INTC_CHAN_MAP(n) (0x0400 + (n << 2))
|
||||
#define DAVINCI_CP_INTC_SYS_POLARITY(n) (0x0D00 + (n << 2))
|
||||
#define DAVINCI_CP_INTC_SYS_TYPE(n) (0x0D80 + (n << 2))
|
||||
#define DAVINCI_CP_INTC_SYS_POLARITY(n) (0x0d00 + (n << 2))
|
||||
#define DAVINCI_CP_INTC_SYS_TYPE(n) (0x0d80 + (n << 2))
|
||||
#define DAVINCI_CP_INTC_HOST_ENABLE(n) (0x1500 + (n << 2))
|
||||
#define DAVINCI_CP_INTC_PRI_INDX_MASK GENMASK(9, 0)
|
||||
#define DAVINCI_CP_INTC_GPIR_NONE BIT(31)
|
||||
|
|
Loading…
Reference in New Issue