From b8f0c8cdb89a62a04b994001bb2f4789654f4ea0 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Mon, 29 Dec 2008 04:00:23 -0800 Subject: [PATCH] --- yaml --- r: 126860 b: refs/heads/master c: 34a4c5eb421dab6fe8381aa12c990f9d6f645b17 h: refs/heads/master v: v3 --- [refs] | 2 +- trunk/include/linux/map_to_7segment.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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; }