diff options
author | Stefan Richter <stefanr@s5r6.in-berlin.de> | 2007-01-21 20:45:32 +0100 |
---|---|---|
committer | Stefan Richter <stefanr@s5r6.in-berlin.de> | 2007-03-09 22:02:41 +0100 |
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); static LIST_HEAD(address_handler_list); const struct fw_address_region fw_low_memory_region = - { 0x000000000000ull, 0x000100000000ull }; + { .start = 0x000000000000ULL, .end = 0x000100000000ULL, }; const struct fw_address_region fw_high_memory_region = - { 0x000100000000ull, 0xffffe0000000ull }; + { .start = 0x000100000000ULL, .end = 0xffffe0000000ULL, }; const struct fw_address_region fw_private_region = - { 0xffffe0000000ull, 0xfffff0000000ull }; + { .start = 0xffffe0000000ULL, .end = 0xfffff0000000ULL, }; const struct fw_address_region fw_csr_region = - { 0xfffff0000000ULL, 0xfffff0000800ull }; + { .start = 0xfffff0000000ULL, .end = 0xfffff0000800ULL, }; const struct fw_address_region fw_unit_space_region = - { 0xfffff0000900ull, 0x1000000000000ull }; + { .start = 0xfffff0000900ULL, .end = 0x1000000000000ULL, }; EXPORT_SYMBOL(fw_low_memory_region); EXPORT_SYMBOL(fw_high_memory_region); EXPORT_SYMBOL(fw_private_region); @@ -692,7 +692,7 @@ static const u32 vendor_textual_descriptor_data[] = { static struct fw_descriptor vendor_textual_descriptor = { .length = ARRAY_SIZE(vendor_textual_descriptor_data), .key = 0x81000000, - .data = vendor_textual_descriptor_data + .data = vendor_textual_descriptor_data, }; static int __init fw_core_init(void) |