include/linux/map_to_7segment.h
changeset 2 d1f6d8b6f81c
parent 0 aa628870c1d3
--- a/include/linux/map_to_7segment.h	Thu Apr 09 12:06:38 2009 +0200
+++ b/include/linux/map_to_7segment.h	Thu Apr 09 12:07:21 2009 +0200
@@ -75,7 +75,7 @@
 	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;
 }