hw/arm/nseries: Constify various read-only arrays
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-id: 20221220142520.24094-3-philmd@linaro.org Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
parent
3d15370894
commit
bd8d01bf57
@ -230,13 +230,13 @@ static void n8x0_i2c_setup(struct n800_s *s)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Touchscreen and keypad controller */
|
/* Touchscreen and keypad controller */
|
||||||
static MouseTransformInfo n800_pointercal = {
|
static const MouseTransformInfo n800_pointercal = {
|
||||||
.x = 800,
|
.x = 800,
|
||||||
.y = 480,
|
.y = 480,
|
||||||
.a = { 14560, -68, -3455208, -39, -9621, 35152972, 65536 },
|
.a = { 14560, -68, -3455208, -39, -9621, 35152972, 65536 },
|
||||||
};
|
};
|
||||||
|
|
||||||
static MouseTransformInfo n810_pointercal = {
|
static const MouseTransformInfo n810_pointercal = {
|
||||||
.x = 800,
|
.x = 800,
|
||||||
.y = 480,
|
.y = 480,
|
||||||
.a = { 15041, 148, -4731056, 171, -10238, 35933380, 65536 },
|
.a = { 15041, 148, -4731056, 171, -10238, 35933380, 65536 },
|
||||||
@ -334,7 +334,7 @@ static void n810_key_event(void *opaque, int keycode)
|
|||||||
|
|
||||||
#define M 0
|
#define M 0
|
||||||
|
|
||||||
static int n810_keys[0x80] = {
|
static const int n810_keys[0x80] = {
|
||||||
[0x01] = 16, /* Q */
|
[0x01] = 16, /* Q */
|
||||||
[0x02] = 37, /* K */
|
[0x02] = 37, /* K */
|
||||||
[0x03] = 24, /* O */
|
[0x03] = 24, /* O */
|
||||||
@ -810,7 +810,7 @@ static void n8x0_usb_setup(struct n800_s *s)
|
|||||||
/* Setup done before the main bootloader starts by some early setup code
|
/* Setup done before the main bootloader starts by some early setup code
|
||||||
* - used when we want to run the main bootloader in emulation. This
|
* - used when we want to run the main bootloader in emulation. This
|
||||||
* isn't documented. */
|
* isn't documented. */
|
||||||
static uint32_t n800_pinout[104] = {
|
static const uint32_t n800_pinout[104] = {
|
||||||
0x080f00d8, 0x00d40808, 0x03080808, 0x080800d0,
|
0x080f00d8, 0x00d40808, 0x03080808, 0x080800d0,
|
||||||
0x00dc0808, 0x0b0f0f00, 0x080800b4, 0x00c00808,
|
0x00dc0808, 0x0b0f0f00, 0x080800b4, 0x00c00808,
|
||||||
0x08080808, 0x180800c4, 0x00b80000, 0x08080808,
|
0x08080808, 0x180800c4, 0x00b80000, 0x08080808,
|
||||||
@ -1060,7 +1060,7 @@ static void n8x0_boot_init(void *opaque)
|
|||||||
#define OMAP_TAG_CBUS 0x4e03
|
#define OMAP_TAG_CBUS 0x4e03
|
||||||
#define OMAP_TAG_EM_ASIC_BB5 0x4e04
|
#define OMAP_TAG_EM_ASIC_BB5 0x4e04
|
||||||
|
|
||||||
static struct omap_gpiosw_info_s {
|
static const struct omap_gpiosw_info_s {
|
||||||
const char *name;
|
const char *name;
|
||||||
int line;
|
int line;
|
||||||
int type;
|
int type;
|
||||||
@ -1102,7 +1102,7 @@ static struct omap_gpiosw_info_s {
|
|||||||
{ NULL }
|
{ NULL }
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct omap_partition_info_s {
|
static const struct omap_partition_info_s {
|
||||||
uint32_t offset;
|
uint32_t offset;
|
||||||
uint32_t size;
|
uint32_t size;
|
||||||
int mask;
|
int mask;
|
||||||
@ -1125,15 +1125,15 @@ static struct omap_partition_info_s {
|
|||||||
{ 0, 0, 0, NULL }
|
{ 0, 0, 0, NULL }
|
||||||
};
|
};
|
||||||
|
|
||||||
static uint8_t n8x0_bd_addr[6] = { N8X0_BD_ADDR };
|
static const uint8_t n8x0_bd_addr[6] = { N8X0_BD_ADDR };
|
||||||
|
|
||||||
static int n8x0_atag_setup(void *p, int model)
|
static int n8x0_atag_setup(void *p, int model)
|
||||||
{
|
{
|
||||||
uint8_t *b;
|
uint8_t *b;
|
||||||
uint16_t *w;
|
uint16_t *w;
|
||||||
uint32_t *l;
|
uint32_t *l;
|
||||||
struct omap_gpiosw_info_s *gpiosw;
|
const struct omap_gpiosw_info_s *gpiosw;
|
||||||
struct omap_partition_info_s *partition;
|
const struct omap_partition_info_s *partition;
|
||||||
const char *tag;
|
const char *tag;
|
||||||
|
|
||||||
w = p;
|
w = p;
|
||||||
|
Loading…
Reference in New Issue
Block a user