]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
[PATCH] powerpc: Remove some ifdefs in oprofile_impl.h
authorAnton Blanchard <anton@samba.org>
Mon, 27 Mar 2006 00:23:29 +0000 (11:23 +1100)
committerPaul Mackerras <paulus@samba.org>
Tue, 28 Mar 2006 05:19:49 +0000 (16:19 +1100)
- No one uses op_counter_config.valid, so remove it
- No need to ifdef around function protypes.

Signed-off-by: Anton Blanchard <anton@samba.org>
Signed-off-by: Paul Mackerras <paulus@samba.org>
include/asm-powerpc/oprofile_impl.h

index 338e6a7cff4a4dbf1976d69052e7c8d8c3cc892a..df4defc6321c190a621a38a40e3288d98bc65e69 100644 (file)
@@ -17,9 +17,6 @@
 
 /* Per-counter configuration as set via oprofilefs.  */
 struct op_counter_config {
-#ifdef __powerpc64__
-       unsigned long valid;
-#endif
        unsigned long enabled;
        unsigned long event;
        unsigned long count;
@@ -56,17 +53,12 @@ struct op_powerpc_model {
        int num_counters;
 };
 
-#ifdef CONFIG_FSL_BOOKE
 extern struct op_powerpc_model op_model_fsl_booke;
-#else /* Otherwise, it's classic */
-
-#ifdef CONFIG_PPC64
 extern struct op_powerpc_model op_model_rs64;
 extern struct op_powerpc_model op_model_power4;
-
-#else /* Otherwise, CONFIG_PPC32 */
 extern struct op_powerpc_model op_model_7450;
-#endif
+
+#ifndef CONFIG_FSL_BOOKE
 
 /* All the classic PPC parts use these */
 static inline unsigned int ctr_read(unsigned int i)