diff options
| author | Roel Kluin <roel.kluin@gmail.com> | 2010-01-15 04:27:49 -0500 |
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2010-01-15 04:27:49 -0500 |
| commit | 093171465235a8482fbf08a9a2e365247e1f7dd5 (patch) | |
| tree | 350eb22f894af5864176a0b887ca93ad2c47c178 | |
| parent | 8654164f54bd02787ae91db8526dcae8e7e34eeb (diff) | |
sparc: leds_resource.end assigned to itself in clock_board_probe()
It should be a 1 byte region.
Signed-off-by: Roel Kluin <roel.kluin@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
| -rw-r--r-- | arch/sparc/kernel/central.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/sparc/kernel/central.c b/arch/sparc/kernel/central.c index f3b5466c389c..4589ca33220f 100644 --- a/arch/sparc/kernel/central.c +++ b/arch/sparc/kernel/central.c | |||
| @@ -99,7 +99,7 @@ static int __devinit clock_board_probe(struct of_device *op, | |||
| 99 | 99 | ||
| 100 | p->leds_resource.start = (unsigned long) | 100 | p->leds_resource.start = (unsigned long) |
| 101 | (p->clock_regs + CLOCK_CTRL); | 101 | (p->clock_regs + CLOCK_CTRL); |
| 102 | p->leds_resource.end = p->leds_resource.end; | 102 | p->leds_resource.end = p->leds_resource.start; |
| 103 | p->leds_resource.name = "leds"; | 103 | p->leds_resource.name = "leds"; |
| 104 | 104 | ||
| 105 | p->leds_pdev.name = "sunfire-clockboard-leds"; | 105 | p->leds_pdev.name = "sunfire-clockboard-leds"; |
| @@ -194,7 +194,7 @@ static int __devinit fhc_probe(struct of_device *op, | |||
| 194 | if (!p->central) { | 194 | if (!p->central) { |
| 195 | p->leds_resource.start = (unsigned long) | 195 | p->leds_resource.start = (unsigned long) |
| 196 | (p->pregs + FHC_PREGS_CTRL); | 196 | (p->pregs + FHC_PREGS_CTRL); |
| 197 | p->leds_resource.end = p->leds_resource.end; | 197 | p->leds_resource.end = p->leds_resource.start; |
| 198 | p->leds_resource.name = "leds"; | 198 | p->leds_resource.name = "leds"; |
| 199 | 199 | ||
| 200 | p->leds_pdev.name = "sunfire-fhc-leds"; | 200 | p->leds_pdev.name = "sunfire-fhc-leds"; |
