sh: Kill off all timer name clobbering.
Now that dev_name() can be used early, we no longer require a static string. Kill off all of the superfluous timer names. Signed-off-by: Paul Mundt <lethal@linux-sh.org>
此提交包含在:
@@ -211,7 +211,6 @@ static struct platform_device veu1_device = {
|
||||
};
|
||||
|
||||
static struct sh_timer_config cmt_platform_data = {
|
||||
.name = "CMT",
|
||||
.channel_offset = 0x60,
|
||||
.timer_bit = 5,
|
||||
.clk = "cmt0",
|
||||
@@ -221,7 +220,6 @@ static struct sh_timer_config cmt_platform_data = {
|
||||
|
||||
static struct resource cmt_resources[] = {
|
||||
[0] = {
|
||||
.name = "CMT",
|
||||
.start = 0x044a0060,
|
||||
.end = 0x044a006b,
|
||||
.flags = IORESOURCE_MEM,
|
||||
@@ -246,7 +244,6 @@ static struct platform_device cmt_device = {
|
||||
};
|
||||
|
||||
static struct sh_timer_config tmu0_platform_data = {
|
||||
.name = "TMU0",
|
||||
.channel_offset = 0x04,
|
||||
.timer_bit = 0,
|
||||
.clk = "tmu0",
|
||||
@@ -255,7 +252,6 @@ static struct sh_timer_config tmu0_platform_data = {
|
||||
|
||||
static struct resource tmu0_resources[] = {
|
||||
[0] = {
|
||||
.name = "TMU0",
|
||||
.start = 0xffd80008,
|
||||
.end = 0xffd80013,
|
||||
.flags = IORESOURCE_MEM,
|
||||
@@ -280,7 +276,6 @@ static struct platform_device tmu0_device = {
|
||||
};
|
||||
|
||||
static struct sh_timer_config tmu1_platform_data = {
|
||||
.name = "TMU1",
|
||||
.channel_offset = 0x10,
|
||||
.timer_bit = 1,
|
||||
.clk = "tmu0",
|
||||
@@ -289,7 +284,6 @@ static struct sh_timer_config tmu1_platform_data = {
|
||||
|
||||
static struct resource tmu1_resources[] = {
|
||||
[0] = {
|
||||
.name = "TMU1",
|
||||
.start = 0xffd80014,
|
||||
.end = 0xffd8001f,
|
||||
.flags = IORESOURCE_MEM,
|
||||
@@ -314,7 +308,6 @@ static struct platform_device tmu1_device = {
|
||||
};
|
||||
|
||||
static struct sh_timer_config tmu2_platform_data = {
|
||||
.name = "TMU2",
|
||||
.channel_offset = 0x1c,
|
||||
.timer_bit = 2,
|
||||
.clk = "tmu0",
|
||||
@@ -322,7 +315,6 @@ static struct sh_timer_config tmu2_platform_data = {
|
||||
|
||||
static struct resource tmu2_resources[] = {
|
||||
[0] = {
|
||||
.name = "TMU2",
|
||||
.start = 0xffd80020,
|
||||
.end = 0xffd8002b,
|
||||
.flags = IORESOURCE_MEM,
|
||||
@@ -347,7 +339,6 @@ static struct platform_device tmu2_device = {
|
||||
};
|
||||
|
||||
static struct sh_timer_config tmu3_platform_data = {
|
||||
.name = "TMU3",
|
||||
.channel_offset = 0x04,
|
||||
.timer_bit = 0,
|
||||
.clk = "tmu1",
|
||||
@@ -355,7 +346,6 @@ static struct sh_timer_config tmu3_platform_data = {
|
||||
|
||||
static struct resource tmu3_resources[] = {
|
||||
[0] = {
|
||||
.name = "TMU3",
|
||||
.start = 0xffd90008,
|
||||
.end = 0xffd90013,
|
||||
.flags = IORESOURCE_MEM,
|
||||
@@ -380,7 +370,6 @@ static struct platform_device tmu3_device = {
|
||||
};
|
||||
|
||||
static struct sh_timer_config tmu4_platform_data = {
|
||||
.name = "TMU4",
|
||||
.channel_offset = 0x10,
|
||||
.timer_bit = 1,
|
||||
.clk = "tmu1",
|
||||
@@ -388,7 +377,6 @@ static struct sh_timer_config tmu4_platform_data = {
|
||||
|
||||
static struct resource tmu4_resources[] = {
|
||||
[0] = {
|
||||
.name = "TMU4",
|
||||
.start = 0xffd90014,
|
||||
.end = 0xffd9001f,
|
||||
.flags = IORESOURCE_MEM,
|
||||
@@ -413,7 +401,6 @@ static struct platform_device tmu4_device = {
|
||||
};
|
||||
|
||||
static struct sh_timer_config tmu5_platform_data = {
|
||||
.name = "TMU5",
|
||||
.channel_offset = 0x1c,
|
||||
.timer_bit = 2,
|
||||
.clk = "tmu1",
|
||||
@@ -421,7 +408,6 @@ static struct sh_timer_config tmu5_platform_data = {
|
||||
|
||||
static struct resource tmu5_resources[] = {
|
||||
[0] = {
|
||||
.name = "TMU5",
|
||||
.start = 0xffd90020,
|
||||
.end = 0xffd9002b,
|
||||
.flags = IORESOURCE_MEM,
|
||||
|
新增問題並參考
封鎖使用者