diff options
author | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-05-08 23:32:43 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-05-08 23:32:43 -0400 |
commit | 0c23664ee8c42f247dba7ceb620baabd892cef88 (patch) | |
tree | e3f37e3260bd938b293cfb8f70f8969b19539973 /drivers/scsi/qla2xxx/qla_init.c | |
parent | 6ec129c3a2f8b38bc37e42348470ccfcb7460146 (diff) | |
parent | 127cda1e8cc282de1ca7a9dcc3866841977b9fcc (diff) |
Merge master.kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6
* master.kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6:
[SPARC64]: Optimize fault kprobe handling just like powerpc.
[SPARC]: Wire up utimensat syscall.
[SPARC64]: Fix request_irq() ignored result warnings in PCI controller code.
[SPARC64]: Kill asm-sparc64/pbm.h
[ATYFB]: Fix sparc includes.
[QLA2XXX]: Fix build on sparc.
[SPARC64]: Removal of trivial pci_controller_info uses.
[SPARC64]: Move index info pci_pbm_info.
[SPARC64]: Move {setup,teardown}_msi_irq into pci_pbm_info.
[SPARC64]: Move pci_ops into pci_pbm_info.
[SPARC64] SBUS: Error interrupt registry cleanups.
[SPARC64] PCI: Use root list of pbm's instead of pci_controller_info's
[SPARC64] PCI: Kill PROM_PCIRNG_MAX and PROM_PCIIMAP_MAX.
[SPARC64] PCI: Use common routine to fetch PBM properties.
Diffstat (limited to 'drivers/scsi/qla2xxx/qla_init.c')
-rw-r--r-- | drivers/scsi/qla2xxx/qla_init.c | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/drivers/scsi/qla2xxx/qla_init.c b/drivers/scsi/qla2xxx/qla_init.c index db998d84cd40..2a45aec4ff29 100644 --- a/drivers/scsi/qla2xxx/qla_init.c +++ b/drivers/scsi/qla2xxx/qla_init.c | |||
@@ -13,7 +13,6 @@ | |||
13 | 13 | ||
14 | #ifdef CONFIG_SPARC | 14 | #ifdef CONFIG_SPARC |
15 | #include <asm/prom.h> | 15 | #include <asm/prom.h> |
16 | #include <asm/pbm.h> | ||
17 | #endif | 16 | #endif |
18 | 17 | ||
19 | /* XXX(hch): this is ugly, but we don't want to pull in exioctl.h */ | 18 | /* XXX(hch): this is ugly, but we don't want to pull in exioctl.h */ |
@@ -1397,9 +1396,8 @@ static void qla2xxx_nvram_wwn_from_ofw(scsi_qla_host_t *ha, nvram_t *nv) | |||
1397 | { | 1396 | { |
1398 | #ifdef CONFIG_SPARC | 1397 | #ifdef CONFIG_SPARC |
1399 | struct pci_dev *pdev = ha->pdev; | 1398 | struct pci_dev *pdev = ha->pdev; |
1400 | struct pcidev_cookie *pcp = pdev->sysdata; | 1399 | struct device_node *dp = pci_device_to_OF_node(pdev); |
1401 | struct device_node *dp = pcp->prom_node; | 1400 | const u8 *val; |
1402 | u8 *val; | ||
1403 | int len; | 1401 | int len; |
1404 | 1402 | ||
1405 | val = of_get_property(dp, "port-wwn", &len); | 1403 | val = of_get_property(dp, "port-wwn", &len); |
@@ -3370,9 +3368,8 @@ static void qla24xx_nvram_wwn_from_ofw(scsi_qla_host_t *ha, struct nvram_24xx *n | |||
3370 | { | 3368 | { |
3371 | #ifdef CONFIG_SPARC | 3369 | #ifdef CONFIG_SPARC |
3372 | struct pci_dev *pdev = ha->pdev; | 3370 | struct pci_dev *pdev = ha->pdev; |
3373 | struct pcidev_cookie *pcp = pdev->sysdata; | 3371 | struct device_node *dp = pci_device_to_OF_node(pdev); |
3374 | struct device_node *dp = pcp->prom_node; | 3372 | const u8 *val; |
3375 | u8 *val; | ||
3376 | int len; | 3373 | int len; |
3377 | 3374 | ||
3378 | val = of_get_property(dp, "port-wwn", &len); | 3375 | val = of_get_property(dp, "port-wwn", &len); |