thp: remove assumptions on pgtable_t type
[deliverable/linux.git] / include / linux / map_to_7segment.h
index 7df8432c4402b576b9f1d5b116aea47a6182daef..12d62a54d47029383b79bdc3ed9b529fe21f6b90 100644 (file)
@@ -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;
 }
This page took 0.026305 seconds and 5 git commands to generate.