Skip to content

Commit

Permalink
[PATCH] ARM: h3600_irda_set_speed arguments
Browse files Browse the repository at this point in the history
h3600_irda_set_speed() had the wrong type for the "speed" argument.
Fix this.

Signed-off-by: Russell King <rmk@arm.linux.org.uk>
  • Loading branch information
Russell King committed Apr 17, 2005
1 parent 336eb02 commit 58c02ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/arm/mach-sa1100/h3600.c
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ static int h3600_irda_set_power(struct device *dev, unsigned int state)
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) {
clr_h3600_egpio(IPAQ_EGPIO_IR_FSEL);
Expand Down

0 comments on commit 58c02ec

Please sign in to comment.