diff options
author | Lin Fuzhen <fuzhen.lin@freescale.com> | 2012-02-10 13:26:21 +0800 |
---|---|---|
committer | Lin Fuzhen <fuzhen.lin@freescale.com> | 2012-03-07 10:16:09 +0800 |
commit | 4e139efa57bf9a6c44ef31372c165261e0a53632 (patch) | |
tree | c59ca1cc5c43b439bbed52fea27a7854a53b9eb7 /arch | |
parent | bc58249a679f9c5ba48236d93815241b3588f96b (diff) |
ENGR00174062 CCM: change clock enable_count to usecount
change clock debugfs sys attr 'enable_count' to 'usecount'
to align with some power debug tool used
Signed-off-by: Lin Fuzhen <fuzhen.lin@freescale.com>
Diffstat (limited to 'arch')
-rwxr-xr-x | arch/arm/plat-mxc/clock.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/plat-mxc/clock.c b/arch/arm/plat-mxc/clock.c index e1923577a9f3..4b9247904b96 100755 --- a/arch/arm/plat-mxc/clock.c +++ b/arch/arm/plat-mxc/clock.c @@ -4,7 +4,7 @@ * Copyright (C) 2004 - 2005 Nokia corporation * Written by Tuukka Tikkanen <tuukka.tikkanen@elektrobit.com> * Modified for omap shared clock framework by Tony Lindgren <tony@atomide.com> - * Copyright 2007-2011 Freescale Semiconductor, Inc. + * Copyright 2007-2012 Freescale Semiconductor, Inc. * Copyright 2008 Juergen Beisert, kernel@pengutronix.de * * This program is free software; you can redistribute it and/or @@ -362,7 +362,7 @@ static int clk_debug_register_one(struct clk *clk) clk->dentry = d; - d = debugfs_create_u8("enable_count", S_IRUGO, clk->dentry, + d = debugfs_create_u8("usecount", S_IRUGO, clk->dentry, (u8 *)&clk->usecount); if (!d) { err = -ENOMEM; |