diff options
Diffstat (limited to 'drivers/firewire/ohci.c')
-rw-r--r-- | drivers/firewire/ohci.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/drivers/firewire/ohci.c b/drivers/firewire/ohci.c index 036fb3bd5659..6f74d8d3f700 100644 --- a/drivers/firewire/ohci.c +++ b/drivers/firewire/ohci.c | |||
@@ -2367,7 +2367,7 @@ static int ohci_enable(struct fw_card *card, | |||
2367 | reg_write(ohci, OHCI1394_FairnessControl, 0); | 2367 | reg_write(ohci, OHCI1394_FairnessControl, 0); |
2368 | card->priority_budget_implemented = ohci->pri_req_max != 0; | 2368 | card->priority_budget_implemented = ohci->pri_req_max != 0; |
2369 | 2369 | ||
2370 | reg_write(ohci, OHCI1394_PhyUpperBound, 0x00010000); | 2370 | reg_write(ohci, OHCI1394_PhyUpperBound, FW_MAX_PHYSICAL_RANGE >> 16); |
2371 | reg_write(ohci, OHCI1394_IntEventClear, ~0); | 2371 | reg_write(ohci, OHCI1394_IntEventClear, ~0); |
2372 | reg_write(ohci, OHCI1394_IntMaskClear, ~0); | 2372 | reg_write(ohci, OHCI1394_IntMaskClear, ~0); |
2373 | 2373 | ||
@@ -3723,9 +3723,11 @@ static int pci_probe(struct pci_dev *dev, | |||
3723 | version = reg_read(ohci, OHCI1394_Version) & 0x00ff00ff; | 3723 | version = reg_read(ohci, OHCI1394_Version) & 0x00ff00ff; |
3724 | ohci_notice(ohci, | 3724 | ohci_notice(ohci, |
3725 | "added OHCI v%x.%x device as card %d, " | 3725 | "added OHCI v%x.%x device as card %d, " |
3726 | "%d IR + %d IT contexts, quirks 0x%x\n", | 3726 | "%d IR + %d IT contexts, quirks 0x%x%s\n", |
3727 | version >> 16, version & 0xff, ohci->card.index, | 3727 | version >> 16, version & 0xff, ohci->card.index, |
3728 | ohci->n_ir, ohci->n_it, ohci->quirks); | 3728 | ohci->n_ir, ohci->n_it, ohci->quirks, |
3729 | reg_read(ohci, OHCI1394_PhyUpperBound) ? | ||
3730 | ", >4 GB phys DMA" : ""); | ||
3729 | 3731 | ||
3730 | return 0; | 3732 | return 0; |
3731 | 3733 | ||