diff options
author | Mathieu Poirier <mathieu.poirier@linaro.org> | 2016-02-17 17:51:52 -0700 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2016-02-20 14:11:01 -0800 |
commit | 22fd532eaa0c24d86e23d8e9e3b7feac4a8cac80 (patch) | |
tree | c979062322116b12cf155ce5e22e9c11b20cbb16 /include/linux/coresight.h | |
parent | 1925a470ce69cdfa2b82ac1565d58dfd39cd877d (diff) | |
download | linux-rpi3-22fd532eaa0c24d86e23d8e9e3b7feac4a8cac80.tar.gz linux-rpi3-22fd532eaa0c24d86e23d8e9e3b7feac4a8cac80.tar.bz2 linux-rpi3-22fd532eaa0c24d86e23d8e9e3b7feac4a8cac80.zip |
coresight: etm3x: adding operation mode for etm_enable()
Adding a new mode to source API enable() in order to
distinguish where the request comes from. That way it is
possible to perform different operations based on where
the request was issued from.
The ETM4x driver is also modified to keep in sync with the
new interface.
Signed-off-by: Mathieu Poirier <mathieu.poirier@linaro.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'include/linux/coresight.h')
-rw-r--r-- | include/linux/coresight.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/coresight.h b/include/linux/coresight.h index 851ecb22397e..61dfb8d511ea 100644 --- a/include/linux/coresight.h +++ b/include/linux/coresight.h @@ -213,7 +213,7 @@ struct coresight_ops_link { struct coresight_ops_source { int (*cpu_id)(struct coresight_device *csdev); int (*trace_id)(struct coresight_device *csdev); - int (*enable)(struct coresight_device *csdev); + int (*enable)(struct coresight_device *csdev, u32 mode); void (*disable)(struct coresight_device *csdev); }; |