From 7dbe66c15786cb013b7f2275d90d5b48572501ad Mon Sep 17 00:00:00 2001 From: Andreas Tobler Date: Thu, 6 Jan 2011 20:19:01 +0000 Subject: [PATCH] Remove unused variables. Spotted by a cppcheck (devel/cppcheck, http://sourceforge.net/projects/cppcheck) run. Approved by: nwhitehorn (mentor) --- sys/powerpc/aim/nexus.c | 3 --- sys/powerpc/aim/vm_machdep.c | 3 --- sys/powerpc/cpufreq/dfs.c | 2 -- sys/powerpc/cpufreq/pcr.c | 2 -- sys/powerpc/powermac/macgpio.c | 2 -- sys/powerpc/powermac/uninorth.c | 3 --- 6 files changed, 15 deletions(-) diff --git a/sys/powerpc/aim/nexus.c b/sys/powerpc/aim/nexus.c index 203ae81db75..4da4e9fc243 100644 --- a/sys/powerpc/aim/nexus.c +++ b/sys/powerpc/aim/nexus.c @@ -340,7 +340,6 @@ static int nexus_setup_intr(device_t dev, device_t child, struct resource *res, int flags, driver_filter_t *filter, driver_intr_t *ihand, void *arg, void **cookiep) { - driver_t *driver; int error; /* somebody tried to setup an irq that failed to allocate! */ @@ -351,8 +350,6 @@ nexus_setup_intr(device_t dev, device_t child, struct resource *res, int flags, if ((rman_get_flags(res) & RF_SHAREABLE) == 0) flags |= INTR_EXCL; - driver = device_get_driver(child); - /* * We depend here on rman_activate_resource() being idempotent. */ diff --git a/sys/powerpc/aim/vm_machdep.c b/sys/powerpc/aim/vm_machdep.c index 7bd0fb7c40d..0f7d9892e24 100644 --- a/sys/powerpc/aim/vm_machdep.c +++ b/sys/powerpc/aim/vm_machdep.c @@ -143,7 +143,6 @@ extern uintptr_t tocbase; void cpu_fork(struct thread *td1, struct proc *p2, struct thread *td2, int flags) { - struct proc *p1; struct trapframe *tf; struct callframe *cf; struct pcb *pcb; @@ -156,8 +155,6 @@ cpu_fork(struct thread *td1, struct proc *p2, struct thread *td2, int flags) if ((flags & RFPROC) == 0) return; - p1 = td1->td_proc; - pcb = (struct pcb *)((td2->td_kstack + td2->td_kstack_pages * PAGE_SIZE - sizeof(struct pcb)) & ~0x2fUL); td2->td_pcb = pcb; diff --git a/sys/powerpc/cpufreq/dfs.c b/sys/powerpc/cpufreq/dfs.c index 2eb61cb386f..fce9fc32bc7 100644 --- a/sys/powerpc/cpufreq/dfs.c +++ b/sys/powerpc/cpufreq/dfs.c @@ -165,12 +165,10 @@ dfs_settings(device_t dev, struct cf_setting *sets, int *count) static int dfs_set(device_t dev, const struct cf_setting *set) { - struct dfs_softc *sc; register_t hid1; if (set == NULL) return (EINVAL); - sc = device_get_softc(dev); hid1 = mfspr(SPR_HID1); hid1 &= ~(HID1_DFS2 | HID1_DFS4); diff --git a/sys/powerpc/cpufreq/pcr.c b/sys/powerpc/cpufreq/pcr.c index fc17592638f..ff4d20d2e93 100644 --- a/sys/powerpc/cpufreq/pcr.c +++ b/sys/powerpc/cpufreq/pcr.c @@ -305,12 +305,10 @@ pcr_set(device_t dev, const struct cf_setting *set) static int pcr_get(device_t dev, struct cf_setting *set) { - struct pcr_softc *sc; uint64_t psr; if (set == NULL) return (EINVAL); - sc = device_get_softc(dev); memset(set, CPUFREQ_VAL_UNKNOWN, sizeof(*set)); diff --git a/sys/powerpc/powermac/macgpio.c b/sys/powerpc/powermac/macgpio.c index 5bdd54d28f1..a5d5772d2d7 100644 --- a/sys/powerpc/powermac/macgpio.c +++ b/sys/powerpc/powermac/macgpio.c @@ -264,10 +264,8 @@ static struct resource * macgpio_alloc_resource(device_t bus, device_t child, int type, int *rid, u_long start, u_long end, u_long count, u_int flags) { - struct macgpio_softc *sc; struct macgpio_devinfo *dinfo; - sc = device_get_softc(bus); dinfo = device_get_ivars(child); if (type != SYS_RES_IRQ) diff --git a/sys/powerpc/powermac/uninorth.c b/sys/powerpc/powermac/uninorth.c index dba91cad5a4..5921a5b832a 100644 --- a/sys/powerpc/powermac/uninorth.c +++ b/sys/powerpc/powermac/uninorth.c @@ -530,11 +530,8 @@ static int unin_chip_activate_resource(device_t bus, device_t child, int type, int rid, struct resource *res) { - struct unin_chip_softc *sc; void *p; - sc = device_get_softc(bus); - if (type == SYS_RES_IRQ) return (bus_activate_resource(bus, type, rid, res));