drivers/char: removes unnecessary semicolon
removes unnecessary semicolon Found by Coccinelle: http://coccinelle.lip6.fr/ Signed-off-by: Peter Senna Tschudin <peter.senna@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
65929215d8
commit
f8885c26d5
2 changed files with 3 additions and 3 deletions
|
@ -93,9 +93,9 @@ int button_del_callback (void (*callback) (void))
|
||||||
button_callback_list [lp].count = 0;
|
button_callback_list [lp].count = 0;
|
||||||
callback_count--;
|
callback_count--;
|
||||||
return 0;
|
return 0;
|
||||||
};
|
}
|
||||||
lp--;
|
lp--;
|
||||||
};
|
}
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -411,7 +411,7 @@ static int rtc_do_ioctl(unsigned int cmd, unsigned long arg, int kernel)
|
||||||
case RTC_IRQP_READ:
|
case RTC_IRQP_READ:
|
||||||
case RTC_IRQP_SET:
|
case RTC_IRQP_SET:
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
};
|
}
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue