aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/sh_clk.h
diff options
context:
space:
mode:
authorMagnus Damm <damm@opensource.se>2010-10-13 03:44:36 -0400
committerPaul Mundt <lethal@linux-sh.org>2010-10-13 06:23:05 -0400
commit69395396a0a8866f30d59c66b7be1912ccb5d160 (patch)
tree7301583a4abbf99bae5c678af87c01a312d1c8f1 /include/linux/sh_clk.h
parent1ffbb037d8e81ba4f09901451b39c8f178b05559 (diff)
sh: remove name and id from struct clk
Remove "name" and "id" from drivers/sh/ struct clk. The struct clk members "name" and "id" are not used now when matching is done through clkdev. Signed-off-by: Magnus Damm <damm@opensource.se> Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'include/linux/sh_clk.h')
-rw-r--r--include/linux/sh_clk.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/include/linux/sh_clk.h b/include/linux/sh_clk.h
index 875ce50719a..ecdfea54a49 100644
--- a/include/linux/sh_clk.h
+++ b/include/linux/sh_clk.h
@@ -21,9 +21,6 @@ struct clk_ops {
21 21
22struct clk { 22struct clk {
23 struct list_head node; 23 struct list_head node;
24 const char *name;
25 int id;
26
27 struct clk *parent; 24 struct clk *parent;
28 struct clk **parent_table; /* list of parents to */ 25 struct clk **parent_table; /* list of parents to */
29 unsigned short parent_num; /* choose between */ 26 unsigned short parent_num; /* choose between */