No need for spaces around "=" in the logger print.
Fixes: c7af343b4e33 ("devlink: Add health report functionality")
Signed-off-by: Eran Ben Elisha <[email protected]>
Reported-by: Jiri Pirko <[email protected]>
Reviewed-by: Moshe Shemesh <[email protected]>
---
include/trace/events/devlink.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/trace/events/devlink.h b/include/trace/events/devlink.h
index 7e39d2fc7c75..bc09c3408912 100644
--- a/include/trace/events/devlink.h
+++ b/include/trace/events/devlink.h
@@ -98,7 +98,7 @@ TRACE_EVENT(devlink_health_recover_aborted,
__entry->time_since_last_recover = time_since_last_recover;
),
- TP_printk("bus_name=%s dev_name=%s driver_name=%s reporter_name=%s:
health_state=%d time_since_last_recover = %llu recover aborted",
+ TP_printk("bus_name=%s dev_name=%s driver_name=%s reporter_name=%s:
health_state=%d time_since_last_recover=%llu recover aborted",
__get_str(bus_name), __get_str(dev_name),
__get_str(driver_name), __get_str(reporter_name),
__entry->health_state,
--
2.17.1