diff options
Diffstat (limited to 'arch/powerpc/include/asm')
| -rw-r--r-- | arch/powerpc/include/asm/machdep.h | 3 | ||||
| -rw-r--r-- | arch/powerpc/include/asm/time.h | 6 | 
2 files changed, 3 insertions, 6 deletions
diff --git a/arch/powerpc/include/asm/machdep.h b/arch/powerpc/include/asm/machdep.h index 42ce570812c..f7706d722b3 100644 --- a/arch/powerpc/include/asm/machdep.h +++ b/arch/powerpc/include/asm/machdep.h @@ -214,6 +214,9 @@ struct machdep_calls {  	/* Called after scan and before resource survey */  	void (*pcibios_fixup_phb)(struct pci_controller *hose); +	/* Called during PCI resource reassignment */ +	resource_size_t (*pcibios_window_alignment)(struct pci_bus *, unsigned long type); +  	/* Called to shutdown machine specific hardware not already controlled  	 * by other drivers.  	 */ diff --git a/arch/powerpc/include/asm/time.h b/arch/powerpc/include/asm/time.h index 3b4b4a8da92..c1f267694ac 100644 --- a/arch/powerpc/include/asm/time.h +++ b/arch/powerpc/include/asm/time.h @@ -197,12 +197,6 @@ struct cpu_usage {  DECLARE_PER_CPU(struct cpu_usage, cpu_usage_array); -#if defined(CONFIG_VIRT_CPU_ACCOUNTING) -#define account_process_vtime(tsk)		account_process_tick(tsk, 0) -#else -#define account_process_vtime(tsk)		do { } while (0) -#endif -  extern void secondary_cpu_time_init(void);  DECLARE_PER_CPU(u64, decrementers_next_tb);  |