summaryrefslogtreecommitdiff
path: root/include/trace
diff options
context:
space:
mode:
authorAntti P Miettinen <amiettinen@nvidia.com>2014-02-13 17:51:31 +0200
committerBharat Nihalani <bnihalani@nvidia.com>2014-02-16 20:40:46 -0800
commit1bf95caa2a3f5b496f9997a742d6cef669d6e2fc (patch)
treeff20af525fce5fd380e3920a37fe774a07d22bcd /include/trace
parentdd015de9687d991554b67ebfb91e4ed7b2bb6fd9 (diff)
video: tegra: host: Fix a compile warning
Use correct format specifier. Change-Id: I120c79e2b9e7f64e5b64672d05fa5ede69d64cb6 Signed-off-by: Antti P Miettinen <amiettinen@nvidia.com> Reviewed-on: http://git-master/r/367228 Reviewed-by: Alexander Van Brunt <avanbrunt@nvidia.com> Reviewed-by: Peter Boonstoppel <pboonstoppel@nvidia.com> Reviewed-by: Bharat Nihalani <bnihalani@nvidia.com>
Diffstat (limited to 'include/trace')
-rw-r--r--include/trace/events/nvhost.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/trace/events/nvhost.h b/include/trace/events/nvhost.h
index da164d626ce6..33c84b960376 100644
--- a/include/trace/events/nvhost.h
+++ b/include/trace/events/nvhost.h
@@ -1,7 +1,7 @@
/*
* Nvhost event logging to ftrace.
*
- * Copyright (c) 2010-2013, NVIDIA Corporation. All rights reserved.
+ * Copyright (c) 2010-2014, NVIDIA Corporation. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -74,9 +74,9 @@ TRACE_EVENT(nvhost_channel_write_submit,
__entry->syncpt_incrs = syncpt_incrs;
),
- TP_printk("name=%s, count=%d, cmdbufs=%u, relocs=%u, syncpt_id=%u, syncpt_incrs=%u",
- __entry->name, __entry->count, __entry->cmdbufs, __entry->relocs,
- __entry->syncpt_id, __entry->syncpt_incrs)
+ TP_printk("name=%s, count=%zd, cmdbufs=%u, relocs=%u, syncpt_id=%u, syncpt_incrs=%u",
+ __entry->name, __entry->count, __entry->cmdbufs,
+ __entry->relocs, __entry->syncpt_id, __entry->syncpt_incrs)
);
TRACE_EVENT(nvhost_channel_submit,