aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoraurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162>2009-03-07 21:48:00 +0000
committeraurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162>2009-03-07 21:48:00 +0000
commit2b3ea3154d38920238fff4a67f477f989d9d8d24 (patch)
treebb3dc264f3459a3aec5894d39b314e7d1f5b3a09
parentarm: Fix gic_irq_state.level bitfield type (diff)
downloadqemu-kvm-2b3ea3154d38920238fff4a67f477f989d9d8d24.tar.gz
qemu-kvm-2b3ea3154d38920238fff4a67f477f989d9d8d24.tar.bz2
qemu-kvm-2b3ea3154d38920238fff4a67f477f989d9d8d24.zip
clean build: Fix arm build warnings
Fix remaining arm warnings - except for the mess in the NetWinder FP emulator. Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com> Signed-off-by: Aurelien Jarno <aurelien@aurel32.net> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6766 c046a42c-6fe2-441c-8c8c-71466251a162
-rw-r--r--arm-dis.c45
-rw-r--r--hw/arm_boot.c2
-rw-r--r--hw/omap_clk.c17
-rw-r--r--target-arm/helper.c2
4 files changed, 2 insertions, 64 deletions
diff --git a/arm-dis.c b/arm-dis.c
index ee44292bd..cc42576d3 100644
--- a/arm-dis.c
+++ b/arm-dis.c
@@ -1554,32 +1554,6 @@ enum map_type last_type;
int last_mapping_sym = -1;
bfd_vma last_mapping_addr = 0;
-
-/* Functions. */
-int
-get_arm_regname_num_options (void)
-{
- return NUM_ARM_REGNAMES;
-}
-
-int
-set_arm_regname_option (int option)
-{
- int old = regname_selected;
- regname_selected = option;
- return old;
-}
-
-int
-get_arm_regnames (int option, const char **setname, const char **setdescription,
- const char *const **register_names)
-{
- *setname = regnames[option].name;
- *setdescription = regnames[option].description;
- *register_names = regnames[option].reg_names;
- return 16;
-}
-
/* Decode a bitfield of the form matching regexp (N(-N)?,)*N(-N)?.
Returns pointer to following character of the format string and
fills in *VALUEP and *WIDTHP with the extracted value and number of
@@ -4144,22 +4118,3 @@ print_insn_arm (bfd_vma pc, struct disassemble_info *info)
}
return size;
}
-
-void
-print_arm_disassembler_options (FILE *stream)
-{
- int i;
-
- fprintf (stream, _("\n\
-The following ARM specific disassembler options are supported for use with\n\
-the -M switch:\n"));
-
- for (i = NUM_ARM_REGNAMES; i--;)
- fprintf (stream, " reg-names-%s %*c%s\n",
- regnames[i].name,
- (int)(14 - strlen (regnames[i].name)), ' ',
- regnames[i].description);
-
- fprintf (stream, " force-thumb Assume all insns are Thumb insns\n");
- fprintf (stream, " no-force-thumb Examine preceeding label to determine an insn's type\n\n");
-}
diff --git a/hw/arm_boot.c b/hw/arm_boot.c
index cf9616ae0..fe17ffc74 100644
--- a/hw/arm_boot.c
+++ b/hw/arm_boot.c
@@ -107,7 +107,7 @@ static void set_kernel_args_old(struct arm_boot_info *info,
int initrd_size, void *base)
{
uint32_t *p;
- unsigned char *s;
+ char *s;
/* see linux/include/asm-arm/setup.h */
p = (uint32_t *)(base + KERNEL_ARGS_ADDR);
diff --git a/hw/omap_clk.c b/hw/omap_clk.c
index 38b098e56..d7a5a577d 100644
--- a/hw/omap_clk.c
+++ b/hw/omap_clk.c
@@ -1098,23 +1098,6 @@ void omap_clk_adduser(struct clk *clk, qemu_irq user)
*i = user;
}
-/* If a clock is allowed to idle, it is disabled automatically when
- * all of clock domains using it are disabled. */
-static int omap_clk_is_idle(struct clk *clk)
-{
- struct clk *chld;
-
- if (!clk->enabled && (!clk->usecount || !(clk->flags && ALWAYS_ENABLED)))
- return 1;
- if (clk->usecount)
- return 0;
-
- for (chld = clk->child1; chld; chld = chld->sibling)
- if (!omap_clk_is_idle(chld))
- return 0;
- return 1;
-}
-
struct clk *omap_findclk(struct omap_mpu_state_s *mpu, const char *name)
{
struct clk *i;
diff --git a/target-arm/helper.c b/target-arm/helper.c
index 3250fb8c1..d6362ca4a 100644
--- a/target-arm/helper.c
+++ b/target-arm/helper.c
@@ -690,7 +690,7 @@ static void do_v7m_exception_exit(CPUARMState *env)
pointer. */
}
-void do_interrupt_v7m(CPUARMState *env)
+static void do_interrupt_v7m(CPUARMState *env)
{
uint32_t xpsr = xpsr_read(env);
uint32_t lr;