diff options
author | Mauro Carvalho Chehab <mchehab@infradead.org> | 2008-07-26 14:45:09 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2008-07-26 14:45:09 -0300 |
commit | d46697867d3baa780e105ea152470aedbf2c0d4a (patch) | |
tree | a926215ce4171ff3a647ee657da294794dcb3b77 | |
parent | 1e89abc47659633deb8623b932d14ae427ada538 (diff) | |
download | mediapointer-dvb-s2-d46697867d3baa780e105ea152470aedbf2c0d4a.tar.gz mediapointer-dvb-s2-d46697867d3baa780e105ea152470aedbf2c0d4a.tar.bz2 |
Fix compat for stkcam
From: Mauro Carvalho Chehab <mchehab@infradead.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
-rw-r--r-- | v4l/compat.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/v4l/compat.h b/v4l/compat.h index 5e46c8271..551696082 100644 --- a/v4l/compat.h +++ b/v4l/compat.h @@ -228,4 +228,11 @@ static inline struct proc_dir_entry *proc_create_data(const char *a, typedef unsigned long uintptr_t; #endif +#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 26) +static inline int list_is_singular(const struct list_head *head) +{ + return !list_empty(head) && (head->next == head->prev); +} +#endif + #endif |