summaryrefslogtreecommitdiff
path: root/drivers/misc
diff options
context:
space:
mode:
authorHuang Shijie <b32955@freescale.com>2012-02-08 10:16:06 +0800
committerHuang Shijie <b32955@freescale.com>2012-02-08 10:23:03 +0800
commit67642bcfe7806cdf1e6da8eeb602348d639743f7 (patch)
tree40375a49f12c8013101a46bd2cccc9e3928393d7 /drivers/misc
parent634db63cb48a8dd237dd361906fc454be8262849 (diff)
ENGR00174018 MX6Q/perfmon : fix the compiling error
reduce one parameter to fix the built error. Signed-off-by: Huang Shijie <b32955@freescale.com>
Diffstat (limited to 'drivers/misc')
-rw-r--r--drivers/misc/mxs-perfmon.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/misc/mxs-perfmon.c b/drivers/misc/mxs-perfmon.c
index 5986e1ca9508..c2ac287a3cb7 100644
--- a/drivers/misc/mxs-perfmon.c
+++ b/drivers/misc/mxs-perfmon.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2011 Freescale Semiconductor, Inc. All Rights Reserved.
+ * Copyright (C) 2011-2012 Freescale Semiconductor, Inc. All Rights Reserved.
*/
/*
@@ -171,7 +171,7 @@ perfmon_show(struct device *dev, struct device_attribute *attr, char *buf)
if (pdata->plt_init)
pdata->plt_init();
- mxs_reset_block((void *)pd->base, true);
+ mxs_reset_block((void *)pd->base);
pd->initial = true;
}
@@ -234,7 +234,7 @@ perfmon_store(struct device *dev, struct device_attribute *attr,
if (pdata->plt_init)
pdata->plt_init();
- mxs_reset_block((void *)pd->base, true);
+ mxs_reset_block((void *)pd->base);
pd->initial = true;
}