diff options
author | Manuel Lauss <manuel.lauss@googlemail.com> | 2010-03-01 15:40:56 -0500 |
---|---|---|
committer | Dominik Brodowski <linux@dominikbrodowski.net> | 2010-03-02 16:20:53 -0500 |
commit | f25e188c892a9a82f8c3babf6fda304fff8cb3cc (patch) | |
tree | 4ef0e9ce4d70ef5dc5a2413f3d0905a713c65e03 /drivers/pcmcia/db1xxx_ss.c | |
parent | f9097dce5d799462e086adca28815dac5006bb30 (diff) |
pcmcia: alchemy: fixup wrong comments
Commit 11b897cf84c37e6522db914793677e933ef311fb changed expected
pcmcia area addresses from the 32bit pseudo to the real 36bit
addresses, but did not update the comments.
Signed-off-by: Manuel Lauss <manuel.lauss@gmail.com>
Signed-off-by: Dominik Brodowski <linux@dominikbrodowski.net>
Diffstat (limited to 'drivers/pcmcia/db1xxx_ss.c')
-rw-r--r-- | drivers/pcmcia/db1xxx_ss.c | 19 |
1 files changed, 4 insertions, 15 deletions
diff --git a/drivers/pcmcia/db1xxx_ss.c b/drivers/pcmcia/db1xxx_ss.c index 3889cf07d6ce..9254ab0b29b1 100644 --- a/drivers/pcmcia/db1xxx_ss.c +++ b/drivers/pcmcia/db1xxx_ss.c | |||
@@ -42,7 +42,6 @@ struct db1x_pcmcia_sock { | |||
42 | int nr; /* socket number */ | 42 | int nr; /* socket number */ |
43 | void *virt_io; | 43 | void *virt_io; |
44 | 44 | ||
45 | /* the "pseudo" addresses of the PCMCIA space. */ | ||
46 | phys_addr_t phys_io; | 45 | phys_addr_t phys_io; |
47 | phys_addr_t phys_attr; | 46 | phys_addr_t phys_attr; |
48 | phys_addr_t phys_mem; | 47 | phys_addr_t phys_mem; |
@@ -437,7 +436,7 @@ static int __devinit db1x_pcmcia_socket_probe(struct platform_device *pdev) | |||
437 | * This includes IRQs for Carddetection/ejection, the card | 436 | * This includes IRQs for Carddetection/ejection, the card |
438 | * itself and optional status change detection. | 437 | * itself and optional status change detection. |
439 | * Also, the memory areas covered by a socket. For these | 438 | * Also, the memory areas covered by a socket. For these |
440 | * we require the 32bit "pseudo" addresses (see the au1000.h | 439 | * we require the real 36bit addresses (see the au1000.h |
441 | * header for more information). | 440 | * header for more information). |
442 | */ | 441 | */ |
443 | 442 | ||
@@ -459,11 +458,7 @@ static int __devinit db1x_pcmcia_socket_probe(struct platform_device *pdev) | |||
459 | 458 | ||
460 | ret = -ENODEV; | 459 | ret = -ENODEV; |
461 | 460 | ||
462 | /* | 461 | /* 36bit PCMCIA Attribute area address */ |
463 | * pseudo-attr: The 32bit address of the PCMCIA attribute space | ||
464 | * for this socket (usually the 36bit address shifted 4 to the | ||
465 | * right). | ||
466 | */ | ||
467 | r = platform_get_resource_byname(pdev, IORESOURCE_MEM, "pcmcia-attr"); | 462 | r = platform_get_resource_byname(pdev, IORESOURCE_MEM, "pcmcia-attr"); |
468 | if (!r) { | 463 | if (!r) { |
469 | printk(KERN_ERR "pcmcia%d has no 'pseudo-attr' resource!\n", | 464 | printk(KERN_ERR "pcmcia%d has no 'pseudo-attr' resource!\n", |
@@ -472,10 +467,7 @@ static int __devinit db1x_pcmcia_socket_probe(struct platform_device *pdev) | |||
472 | } | 467 | } |
473 | sock->phys_attr = r->start; | 468 | sock->phys_attr = r->start; |
474 | 469 | ||
475 | /* | 470 | /* 36bit PCMCIA Memory area address */ |
476 | * pseudo-mem: The 32bit address of the PCMCIA memory space for | ||
477 | * this socket (usually the 36bit address shifted 4 to the right) | ||
478 | */ | ||
479 | r = platform_get_resource_byname(pdev, IORESOURCE_MEM, "pcmcia-mem"); | 471 | r = platform_get_resource_byname(pdev, IORESOURCE_MEM, "pcmcia-mem"); |
480 | if (!r) { | 472 | if (!r) { |
481 | printk(KERN_ERR "pcmcia%d has no 'pseudo-mem' resource!\n", | 473 | printk(KERN_ERR "pcmcia%d has no 'pseudo-mem' resource!\n", |
@@ -484,10 +476,7 @@ static int __devinit db1x_pcmcia_socket_probe(struct platform_device *pdev) | |||
484 | } | 476 | } |
485 | sock->phys_mem = r->start; | 477 | sock->phys_mem = r->start; |
486 | 478 | ||
487 | /* | 479 | /* 36bit PCMCIA IO area address */ |
488 | * pseudo-io: The 32bit address of the PCMCIA IO space for this | ||
489 | * socket (usually the 36bit address shifted 4 to the right). | ||
490 | */ | ||
491 | r = platform_get_resource_byname(pdev, IORESOURCE_MEM, "pcmcia-io"); | 480 | r = platform_get_resource_byname(pdev, IORESOURCE_MEM, "pcmcia-io"); |
492 | if (!r) { | 481 | if (!r) { |
493 | printk(KERN_ERR "pcmcia%d has no 'pseudo-io' resource!\n", | 482 | printk(KERN_ERR "pcmcia%d has no 'pseudo-io' resource!\n", |