Module Name: src Committed By: martin Date: Sun Nov 17 18:08:08 UTC 2013
Modified Files: src/sys/arch/x86/x86: coretemp.c Log Message: Remove unused variable To generate a diff of this commit: cvs rdiff -u -r1.31 -r1.32 src/sys/arch/x86/x86/coretemp.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/arch/x86/x86/coretemp.c diff -u src/sys/arch/x86/x86/coretemp.c:1.31 src/sys/arch/x86/x86/coretemp.c:1.32 --- src/sys/arch/x86/x86/coretemp.c:1.31 Fri Nov 15 08:47:55 2013 +++ src/sys/arch/x86/x86/coretemp.c Sun Nov 17 18:08:08 2013 @@ -1,4 +1,4 @@ -/* $NetBSD: coretemp.c,v 1.31 2013/11/15 08:47:55 msaitoh Exp $ */ +/* $NetBSD: coretemp.c,v 1.32 2013/11/17 18:08:08 martin Exp $ */ /*- * Copyright (c) 2011 The NetBSD Foundation, Inc. @@ -61,7 +61,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: coretemp.c,v 1.31 2013/11/15 08:47:55 msaitoh Exp $"); +__KERNEL_RCSID(0, "$NetBSD: coretemp.c,v 1.32 2013/11/17 18:08:08 martin Exp $"); #include <sys/param.h> #include <sys/device.h> @@ -256,10 +256,9 @@ coretemp_tjmax(device_t self) { struct coretemp_softc *sc = device_private(self); struct cpu_info *ci = sc->sc_ci; - uint32_t family, model, stepping; + uint32_t model, stepping; uint64_t msr; - family = CPUID_TO_FAMILY(ci->ci_signature); model = CPUID_TO_MODEL(ci->ci_signature); stepping = CPUID_TO_STEPPING(ci->ci_signature);