diff options
author | Kay Sievers <[email protected]> | 2012-06-19 00:32:57 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <[email protected]> | 2012-06-18 15:55:21 -0700 |
commit | 246f6f2ff2c5cf46ded6d06f11f63e38bad880d1 (patch) | |
tree | c812c90ce96f744ed82815dafbf1b0181ec051a1 | |
parent | b56a39ac263e5b8cafedd551a49c2105e68b98c2 (diff) |
kmsg - kmsg_dump() fix CONFIG_PRINTK=n compilation
Signed-off-by: Kay Sievers <[email protected]>
Cc: Stephen Rothwell <[email protected]>
Reported-by: Randy Dunlap <[email protected]>
Reported-by: Fengguang Wu <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
-rw-r--r-- | include/linux/kmsg_dump.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/linux/kmsg_dump.h b/include/linux/kmsg_dump.h index af4eb5a39d9a..d6bd50110ec2 100644 --- a/include/linux/kmsg_dump.h +++ b/include/linux/kmsg_dump.h @@ -71,19 +71,19 @@ static inline void kmsg_dump(enum kmsg_dump_reason reason) { } -bool kmsg_dump_get_line(struct kmsg_dumper *dumper, bool syslog, - const char *line, size_t size, size_t *len) +static inline bool kmsg_dump_get_line(struct kmsg_dumper *dumper, bool syslog, + const char *line, size_t size, size_t *len) { return false; } -bool kmsg_dump_get_buffer(struct kmsg_dumper *dumper, bool syslog, - char *buf, size_t size, size_t *len) +static inline bool kmsg_dump_get_buffer(struct kmsg_dumper *dumper, bool syslog, + char *buf, size_t size, size_t *len) { return false; } -void kmsg_dump_rewind(struct kmsg_dumper *dumper) +static inline void kmsg_dump_rewind(struct kmsg_dumper *dumper) { } |