diff options
author | Paul Walmsley <paul@pwsan.com> | 2010-02-22 22:09:19 -0700 |
---|---|---|
committer | Paul Walmsley <paul@pwsan.com> | 2010-02-24 12:16:13 -0700 |
commit | b92c170d019db7554db95380d2e1dfb3a368e350 (patch) | |
tree | 2ab2743375335d56683b83cea48876eb37a43b81 /arch/arm/plat-omap/clock.c | |
parent | f71eddb1582f5c53ed4bfc365a2acce94aca88cc (diff) | |
download | op-kernel-dev-b92c170d019db7554db95380d2e1dfb3a368e350.zip op-kernel-dev-b92c170d019db7554db95380d2e1dfb3a368e350.tar.gz |
OMAP clock: drop .id field; ensure each clock has a unique name
After the clkdev conversion, the struct clk.id field became
superfluous, so, drop it. Bring the clock names closer to the TRMs
and ensure they are unique for debugfs.
Signed-off-by: Paul Walmsley <paul@pwsan.com>
Diffstat (limited to 'arch/arm/plat-omap/clock.c')
-rw-r--r-- | arch/arm/plat-omap/clock.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/arch/arm/plat-omap/clock.c b/arch/arm/plat-omap/clock.c index e3b58af..f244b17 100644 --- a/arch/arm/plat-omap/clock.c +++ b/arch/arm/plat-omap/clock.c @@ -408,8 +408,6 @@ static int clk_debugfs_register_one(struct clk *c) char *p = s; p += sprintf(p, "%s", c->name); - if (c->id != 0) - sprintf(p, ":%d", c->id); d = debugfs_create_dir(s, pa ? pa->dent : clk_debugfs_root); if (!d) return -ENOMEM; |