diff options
Diffstat (limited to 'drivers/firewire/core-transaction.c')
-rw-r--r-- | drivers/firewire/core-transaction.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/firewire/core-transaction.c b/drivers/firewire/core-transaction.c index 0e799516a2ab..eb6935c8ad94 100644 --- a/drivers/firewire/core-transaction.c +++ b/drivers/firewire/core-transaction.c | |||
@@ -523,11 +523,11 @@ static DEFINE_SPINLOCK(address_handler_list_lock); | |||
523 | static LIST_HEAD(address_handler_list); | 523 | static LIST_HEAD(address_handler_list); |
524 | 524 | ||
525 | const struct fw_address_region fw_high_memory_region = | 525 | const struct fw_address_region fw_high_memory_region = |
526 | { .start = 0x000100000000ULL, .end = 0xffffe0000000ULL, }; | 526 | { .start = FW_MAX_PHYSICAL_RANGE, .end = 0xffffe0000000ULL, }; |
527 | EXPORT_SYMBOL(fw_high_memory_region); | 527 | EXPORT_SYMBOL(fw_high_memory_region); |
528 | 528 | ||
529 | static const struct fw_address_region low_memory_region = | 529 | static const struct fw_address_region low_memory_region = |
530 | { .start = 0x000000000000ULL, .end = 0x000100000000ULL, }; | 530 | { .start = 0x000000000000ULL, .end = FW_MAX_PHYSICAL_RANGE, }; |
531 | 531 | ||
532 | #if 0 | 532 | #if 0 |
533 | const struct fw_address_region fw_private_region = | 533 | const struct fw_address_region fw_private_region = |
@@ -1217,7 +1217,7 @@ static void handle_low_memory(struct fw_card *card, struct fw_request *request, | |||
1217 | } | 1217 | } |
1218 | 1218 | ||
1219 | static struct fw_address_handler low_memory = { | 1219 | static struct fw_address_handler low_memory = { |
1220 | .length = 0x000100000000ULL, | 1220 | .length = FW_MAX_PHYSICAL_RANGE, |
1221 | .address_callback = handle_low_memory, | 1221 | .address_callback = handle_low_memory, |
1222 | }; | 1222 | }; |
1223 | 1223 | ||