aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/linux/kmsg_dump.h10
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)
71{ 71{
72} 72}
73 73
74bool kmsg_dump_get_line(struct kmsg_dumper *dumper, bool syslog, 74static inline bool kmsg_dump_get_line(struct kmsg_dumper *dumper, bool syslog,
75 const char *line, size_t size, size_t *len) 75 const char *line, size_t size, size_t *len)
76{ 76{
77 return false; 77 return false;
78} 78}
79 79
80bool kmsg_dump_get_buffer(struct kmsg_dumper *dumper, bool syslog, 80static inline bool kmsg_dump_get_buffer(struct kmsg_dumper *dumper, bool syslog,
81 char *buf, size_t size, size_t *len) 81 char *buf, size_t size, size_t *len)
82{ 82{
83 return false; 83 return false;
84} 84}
85 85
86void kmsg_dump_rewind(struct kmsg_dumper *dumper) 86static inline void kmsg_dump_rewind(struct kmsg_dumper *dumper)
87{ 87{
88} 88}
89 89