aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/remoteproc.h
diff options
context:
space:
mode:
authorAnna, Suman <s-anna@ti.com>2016-08-12 18:42:19 -0500
committerBjorn Andersson <bjorn.andersson@linaro.org>2016-08-12 21:27:48 -0700
commitf145928d496df35fdca86d8af77fe9610fd0055f (patch)
tree55688e8229488c271638e8d1c8f779ea3594e9ed /include/linux/remoteproc.h
parentremoteproc: use variable names for sizeof() operator (diff)
downloadlinux-dev-f145928d496df35fdca86d8af77fe9610fd0055f.tar.xz
linux-dev-f145928d496df35fdca86d8af77fe9610fd0055f.zip
remoteproc: fix bare unsigned type usage
While there is nothing wrong with defining an unsigned integer variable or argument using the bare unsigned type, it is better to use the checkpatch preferred 'unsigned int' type. Signed-off-by: Suman Anna <s-anna@ti.com> Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
Diffstat (limited to 'include/linux/remoteproc.h')
-rw-r--r--include/linux/remoteproc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/remoteproc.h b/include/linux/remoteproc.h
index 1c457a8dd5a6..f575f1ba42a1 100644
--- a/include/linux/remoteproc.h
+++ b/include/linux/remoteproc.h
@@ -435,7 +435,7 @@ struct rproc {
struct idr notifyids;
int index;
struct work_struct crash_handler;
- unsigned crash_cnt;
+ unsigned int crash_cnt;
struct completion crash_comp;
bool recovery_disabled;
int max_notifyid;