|
@@ -31,13 +31,13 @@ trap 'rm -f "$OUTDIR/$FILE" "$OUTDIR/$FILE.sed"' EXIT
|
|
for i in "$@"
|
|
for i in "$@"
|
|
do
|
|
do
|
|
FILE="$(basename "$i")"
|
|
FILE="$(basename "$i")"
|
|
- sed -r \
|
|
|
|
- -e 's/([ \t(])(__user|__force|__iomem)[ \t]/\1/g' \
|
|
|
|
- -e 's/__attribute_const__([ \t]|$)/\1/g' \
|
|
|
|
|
|
+ sed -E \
|
|
|
|
+ -e 's/([[:space:](])(__user|__force|__iomem)[[:space:]]/\1/g' \
|
|
|
|
+ -e 's/__attribute_const__([[:space:]]|$)/\1/g' \
|
|
-e 's@^#include <linux/compiler(|_types).h>@@' \
|
|
-e 's@^#include <linux/compiler(|_types).h>@@' \
|
|
-e 's/(^|[^a-zA-Z0-9])__packed([^a-zA-Z0-9_]|$)/\1__attribute__((packed))\2/g' \
|
|
-e 's/(^|[^a-zA-Z0-9])__packed([^a-zA-Z0-9_]|$)/\1__attribute__((packed))\2/g' \
|
|
- -e 's/(^|[ \t(])(inline|asm|volatile)([ \t(]|$)/\1__\2__\3/g' \
|
|
|
|
- -e 's@#(ifndef|define|endif[ \t]*/[*])[ \t]*_UAPI@#\1 @' \
|
|
|
|
|
|
+ -e 's/(^|[[:space:](])(inline|asm|volatile)([[:space:](]|$)/\1__\2__\3/g' \
|
|
|
|
+ -e 's@#(ifndef|define|endif[[:space:]]*/[*])[[:space:]]*_UAPI@#\1 @' \
|
|
"$SRCDIR/$i" > "$OUTDIR/$FILE.sed" || exit 1
|
|
"$SRCDIR/$i" > "$OUTDIR/$FILE.sed" || exit 1
|
|
scripts/unifdef -U__KERNEL__ -D__EXPORTED_HEADERS__ "$OUTDIR/$FILE.sed" \
|
|
scripts/unifdef -U__KERNEL__ -D__EXPORTED_HEADERS__ "$OUTDIR/$FILE.sed" \
|
|
> "$OUTDIR/$FILE"
|
|
> "$OUTDIR/$FILE"
|