diff --git a/[refs] b/[refs] index 5213d3af29f1..8e1f5b9abf4b 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: e0ee629878d91da998fc26e8fa8b977177f70f39 +refs/heads/master: 34a4c5eb421dab6fe8381aa12c990f9d6f645b17 diff --git a/trunk/include/linux/map_to_7segment.h b/trunk/include/linux/map_to_7segment.h index 7df8432c4402..12d62a54d470 100644 --- a/trunk/include/linux/map_to_7segment.h +++ b/trunk/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; }