Module Name: src Committed By: matt Date: Fri Jun 17 19:04:00 UTC 2011
Modified Files: src/sys/arch/powerpc/include: cpu.h Log Message: struct device * -> device_t To generate a diff of this commit: cvs rdiff -u -r1.81 -r1.82 src/sys/arch/powerpc/include/cpu.h 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/powerpc/include/cpu.h diff -u src/sys/arch/powerpc/include/cpu.h:1.81 src/sys/arch/powerpc/include/cpu.h:1.82 --- src/sys/arch/powerpc/include/cpu.h:1.81 Wed Jun 15 15:18:20 2011 +++ src/sys/arch/powerpc/include/cpu.h Fri Jun 17 19:04:00 2011 @@ -1,4 +1,4 @@ -/* $NetBSD: cpu.h,v 1.81 2011/06/15 15:18:20 matt Exp $ */ +/* $NetBSD: cpu.h,v 1.82 2011/06/17 19:04:00 matt Exp $ */ /* * Copyright (C) 1999 Wolfgang Solfrank. @@ -157,7 +157,7 @@ #ifdef MULTIPROCESSOR struct cpu_hatch_data { - struct device *self; + device_t self; struct cpu_info *ci; int running; int pir; @@ -390,7 +390,7 @@ void md_start_timebase(volatile struct cpu_hatch_data *); void md_sync_timebase(volatile struct cpu_hatch_data *); void md_setup_interrupts(void); -int cpu_spinup(struct device *, struct cpu_info *); +int cpu_spinup(device_t, struct cpu_info *); register_t cpu_hatch(void); void cpu_spinup_trampoline(void); #endif