mirror of https://gitee.com/openkylin/linux.git
V4L/DVB: ir-core-priv.h: Fix a few CodingStyle errors
As reported by checkpatch.pl: ERROR: open brace '{' following function declarations go on the next line +static inline bool geq_margin(unsigned d1, unsigned d2, unsigned margin) { ERROR: open brace '{' following function declarations go on the next line +static inline bool eq_margin(unsigned d1, unsigned d2, unsigned margin) { ERROR: open brace '{' following function declarations go on the next line +static inline bool is_transition(struct ir_raw_event *x, struct ir_raw_event *y) { Cc: David Härdeman <david@hardeman.nu> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
e40b1127f9
commit
384f23e8c9
|
@ -36,19 +36,23 @@ struct ir_raw_event_ctrl {
|
||||||
};
|
};
|
||||||
|
|
||||||
/* macros for IR decoders */
|
/* macros for IR decoders */
|
||||||
static inline bool geq_margin(unsigned d1, unsigned d2, unsigned margin) {
|
static inline bool geq_margin(unsigned d1, unsigned d2, unsigned margin)
|
||||||
|
{
|
||||||
return d1 > (d2 - margin);
|
return d1 > (d2 - margin);
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline bool eq_margin(unsigned d1, unsigned d2, unsigned margin) {
|
static inline bool eq_margin(unsigned d1, unsigned d2, unsigned margin)
|
||||||
|
{
|
||||||
return ((d1 > (d2 - margin)) && (d1 < (d2 + margin)));
|
return ((d1 > (d2 - margin)) && (d1 < (d2 + margin)));
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline bool is_transition(struct ir_raw_event *x, struct ir_raw_event *y) {
|
static inline bool is_transition(struct ir_raw_event *x, struct ir_raw_event *y)
|
||||||
|
{
|
||||||
return x->pulse != y->pulse;
|
return x->pulse != y->pulse;
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline void decrease_duration(struct ir_raw_event *ev, unsigned duration) {
|
static inline void decrease_duration(struct ir_raw_event *ev, unsigned duration)
|
||||||
|
{
|
||||||
if (duration > ev->duration)
|
if (duration > ev->duration)
|
||||||
ev->duration = 0;
|
ev->duration = 0;
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in New Issue