Skip to content

Commit

Permalink
tracing: Fix typo from "static inlin" to "static inline"
Browse files Browse the repository at this point in the history
The trace.h header when called without CONFIG_EVENT_TRACING enabled
(seldom done), will not compile because of a typo in the protocol
of trace_event_enum_update().

Cc: [email protected] # 4.1+
Signed-off-by: Steven Rostedt <[email protected]>
  • Loading branch information
rostedt committed Jun 25, 2015
1 parent 6b88f44 commit cc9e4bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kernel/trace/trace.h
Original file line number Diff line number Diff line change
Expand Up @@ -1312,7 +1312,7 @@ void trace_event_init(void);
void trace_event_enum_update(struct trace_enum_map **map, int len);
#else
static inline void __init trace_event_init(void) { }
static inlin void trace_event_enum_update(struct trace_enum_map **map, int len) { }
static inline void trace_event_enum_update(struct trace_enum_map **map, int len) { }
#endif

extern struct trace_iterator *tracepoint_print_iter;
Expand Down

0 comments on commit cc9e4bd

Please sign in to comment.