aboutsummaryrefslogtreecommitdiff
path: root/include/linux/map_to_7segment.h
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2008-12-29 04:00:23 -0800
committerDmitry Torokhov <dmitry.torokhov@gmail.com>2008-12-29 04:59:31 -0800
commit34a4c5eb421dab6fe8381aa12c990f9d6f645b17 (patch)
tree96f9871bf0d101378f4535f5c910cde2dcd40c64 /include/linux/map_to_7segment.h
parente0ee629878d91da998fc26e8fa8b977177f70f39 (diff)
Input: map_to_7segment.h - convert to __inline__ for userspace
Use __inline__ rather than inline for map_to_seg7() since it is exported to userspace. Signed-off-by: Mike Frysinger <vapier@gentoo.org> Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
Diffstat (limited to 'include/linux/map_to_7segment.h')
-rw-r--r--include/linux/map_to_7segment.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/map_to_7segment.h b/include/linux/map_to_7segment.h
index 7df8432c440..12d62a54d47 100644
--- a/include/linux/map_to_7segment.h
+++ b/include/linux/map_to_7segment.h
@@ -75,7 +75,7 @@ struct seg7_conversion_map {
unsigned char table[128];
};
-static inline int map_to_seg7(struct seg7_conversion_map *map, int c)
+static __inline__ int map_to_seg7(struct seg7_conversion_map *map, int c)
{
return c >= 0 && c < sizeof(map->table) ? map->table[c] : -EINVAL;
}