aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-sa1100
diff options
context:
space:
mode:
authorDmitry Artamonow <mad_soft@inbox.ru>2009-03-15 14:13:16 -0400
committerRussell King <rmk+kernel@arm.linux.org.uk>2009-03-15 16:08:18 -0400
commit104a416d80fca22284319b06eff87b6f632a3649 (patch)
tree9be3a552ba5814345c0ec8e1ee8abe47fea10bf7 /arch/arm/mach-sa1100
parentddcd8c09001e66f78488bfc238ed5bd8441d4496 (diff)
[ARM] 5426/1: h3600: remove clr_h3600_egpio/set_h3600_egpio helpers
Replace all occurences with assign_h3600_egpio. Also simplify code a bit by replacing couple of if-else statements with one-line equivalents. Signed-off-by: Dmitry Artamonow <mad_soft@inbox.ru> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mach-sa1100')
-rw-r--r--arch/arm/mach-sa1100/h3600.c6
-rw-r--r--arch/arm/mach-sa1100/include/mach/h3600.h13
2 files changed, 1 insertions, 18 deletions
diff --git a/arch/arm/mach-sa1100/h3600.c b/arch/arm/mach-sa1100/h3600.c
index 9f13f5bd57a2..1fa0f58c07b0 100644
--- a/arch/arm/mach-sa1100/h3600.c
+++ b/arch/arm/mach-sa1100/h3600.c
@@ -92,11 +92,7 @@ static int h3600_irda_set_power(struct device *dev, unsigned int state)
92 92
93static void h3600_irda_set_speed(struct device *dev, unsigned int speed) 93static void h3600_irda_set_speed(struct device *dev, unsigned int speed)
94{ 94{
95 if (speed < 4000000) { 95 assign_h3600_egpio(IPAQ_EGPIO_IR_FSEL, !(speed < 4000000));
96 clr_h3600_egpio(IPAQ_EGPIO_IR_FSEL);
97 } else {
98 set_h3600_egpio(IPAQ_EGPIO_IR_FSEL);
99 }
100} 96}
101 97
102static struct irda_platform_data h3600_irda_data = { 98static struct irda_platform_data h3600_irda_data = {
diff --git a/arch/arm/mach-sa1100/include/mach/h3600.h b/arch/arm/mach-sa1100/include/mach/h3600.h
index 8e8ccfc2f463..33fc4bcfd3ee 100644
--- a/arch/arm/mach-sa1100/include/mach/h3600.h
+++ b/arch/arm/mach-sa1100/include/mach/h3600.h
@@ -105,19 +105,6 @@ static __inline__ void assign_h3600_egpio(enum ipaq_egpio_type x, int level)
105 ipaq_model_ops.control(x,level); 105 ipaq_model_ops.control(x,level);
106} 106}
107 107
108static __inline__ void clr_h3600_egpio(enum ipaq_egpio_type x)
109{
110 if (ipaq_model_ops.control)
111 ipaq_model_ops.control(x,0);
112}
113
114static __inline__ void set_h3600_egpio(enum ipaq_egpio_type x)
115{
116 if (ipaq_model_ops.control)
117 ipaq_model_ops.control(x,1);
118}
119
120
121#endif /* ASSEMBLY */ 108#endif /* ASSEMBLY */
122 109
123#endif /* _INCLUDE_H3600_H_ */ 110#endif /* _INCLUDE_H3600_H_ */