Commit 58c02ec4 authored by Russell King's avatar Russell King

[PATCH] ARM: h3600_irda_set_speed arguments

h3600_irda_set_speed() had the wrong type for the "speed" argument.
Fix this.
Signed-off-by: default avatarRussell King <rmk@arm.linux.org.uk>
parent 336eb02b
...@@ -130,7 +130,7 @@ static int h3600_irda_set_power(struct device *dev, unsigned int state) ...@@ -130,7 +130,7 @@ static int h3600_irda_set_power(struct device *dev, unsigned int state)
return 0; return 0;
} }
static void h3600_irda_set_speed(struct device *dev, int speed) static void h3600_irda_set_speed(struct device *dev, unsigned int speed)
{ {
if (speed < 4000000) { if (speed < 4000000) {
clr_h3600_egpio(IPAQ_EGPIO_IR_FSEL); clr_h3600_egpio(IPAQ_EGPIO_IR_FSEL);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment