diff options
author | Stefan Richter <stefanr@s5r6.in-berlin.de> | 2007-01-21 14:45:32 -0500 |
---|---|---|
committer | Stefan Richter <stefanr@s5r6.in-berlin.de> | 2007-03-09 16:02:41 -0500 |
commit | 5af4e5eab30d481f76b89a2167c873dfad960acb (patch) | |
tree | eb958f6afd26bb382de66156feb8f64fe8646f73 /drivers/firewire/fw-transaction.c | |
parent | 5e20c282184fd5794661b6688883231ff5348abc (diff) |
firewire: comma after last enum item or initializer
Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
Signed-off-by: Kristian Høgsberg <krh@redhat.com>
Diffstat (limited to 'drivers/firewire/fw-transaction.c')
-rw-r--r-- | drivers/firewire/fw-transaction.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/firewire/fw-transaction.c b/drivers/firewire/fw-transaction.c index 79563b2848fa..4c1275f9a3b4 100644 --- a/drivers/firewire/fw-transaction.c +++ b/drivers/firewire/fw-transaction.c | |||
@@ -332,15 +332,15 @@ static DEFINE_SPINLOCK(address_handler_lock); | |||
332 | static LIST_HEAD(address_handler_list); | 332 | static LIST_HEAD(address_handler_list); |
333 | 333 | ||
334 | const struct fw_address_region fw_low_memory_region = | 334 | const struct fw_address_region fw_low_memory_region = |
335 | { 0x000000000000ull, 0x000100000000ull }; | 335 | { .start = 0x000000000000ULL, .end = 0x000100000000ULL, }; |
336 | const struct fw_address_region fw_high_memory_region = | 336 | const struct fw_address_region fw_high_memory_region = |
337 | { 0x000100000000ull, 0xffffe0000000ull }; | 337 | { .start = 0x000100000000ULL, .end = 0xffffe0000000ULL, }; |
338 | const struct fw_address_region fw_private_region = | 338 | const struct fw_address_region fw_private_region = |
339 | { 0xffffe0000000ull, 0xfffff0000000ull }; | 339 | { .start = 0xffffe0000000ULL, .end = 0xfffff0000000ULL, }; |
340 | const struct fw_address_region fw_csr_region = | 340 | const struct fw_address_region fw_csr_region = |
341 | { 0xfffff0000000ULL, 0xfffff0000800ull }; | 341 | { .start = 0xfffff0000000ULL, .end = 0xfffff0000800ULL, }; |
342 | const struct fw_address_region fw_unit_space_region = | 342 | const struct fw_address_region fw_unit_space_region = |
343 | { 0xfffff0000900ull, 0x1000000000000ull }; | 343 | { .start = 0xfffff0000900ULL, .end = 0x1000000000000ULL, }; |
344 | EXPORT_SYMBOL(fw_low_memory_region); | 344 | EXPORT_SYMBOL(fw_low_memory_region); |
345 | EXPORT_SYMBOL(fw_high_memory_region); | 345 | EXPORT_SYMBOL(fw_high_memory_region); |
346 | EXPORT_SYMBOL(fw_private_region); | 346 | EXPORT_SYMBOL(fw_private_region); |
@@ -692,7 +692,7 @@ static const u32 vendor_textual_descriptor_data[] = { | |||
692 | static struct fw_descriptor vendor_textual_descriptor = { | 692 | static struct fw_descriptor vendor_textual_descriptor = { |
693 | .length = ARRAY_SIZE(vendor_textual_descriptor_data), | 693 | .length = ARRAY_SIZE(vendor_textual_descriptor_data), |
694 | .key = 0x81000000, | 694 | .key = 0x81000000, |
695 | .data = vendor_textual_descriptor_data | 695 | .data = vendor_textual_descriptor_data, |
696 | }; | 696 | }; |
697 | 697 | ||
698 | static int __init fw_core_init(void) | 698 | static int __init fw_core_init(void) |