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>
This commit is contained in:
Magnus Damm 2010-10-13 07:44:36 +00:00 committed by Paul Mundt
parent 1ffbb037d8
commit 69395396a0
3 changed files with 6 additions and 13 deletions

View file

@ -21,9 +21,6 @@ struct clk_ops {
struct clk {
struct list_head node;
const char *name;
int id;
struct clk *parent;
struct clk **parent_table; /* list of parents to */
unsigned short parent_num; /* choose between */