diff options
Diffstat (limited to 'fs/udf/udfdecl.h')
-rw-r--r-- | fs/udf/udfdecl.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/fs/udf/udfdecl.h b/fs/udf/udfdecl.h index 7bc3ba1415fc..85e15edc080f 100644 --- a/fs/udf/udfdecl.h +++ b/fs/udf/udfdecl.h | |||
@@ -30,7 +30,10 @@ do { \ | |||
30 | #endif | 30 | #endif |
31 | 31 | ||
32 | __attribute__((format(printf, 3, 4))) | 32 | __attribute__((format(printf, 3, 4))) |
33 | extern void udf_warning(struct super_block *, const char *, const char *, ...); | 33 | extern void _udf_warn(struct super_block *sb, const char *function, |
34 | const char *fmt, ...); | ||
35 | #define udf_warn(sb, fmt, ...) \ | ||
36 | _udf_warn(sb, __func__, fmt, ##__VA_ARGS__) | ||
34 | 37 | ||
35 | __attribute__((format(printf, 3, 4))) | 38 | __attribute__((format(printf, 3, 4))) |
36 | extern void _udf_err(struct super_block *sb, const char *function, | 39 | extern void _udf_err(struct super_block *sb, const char *function, |