firewire: fw-ohci: shut up false compiler warning on PPC32

Shut up "may be used uninitialised in this function" warnings due to
PPC32's implementation of dma_alloc_coherent().

Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>

+3 -3
+3 -3
drivers/firewire/fw-ohci.c
··· 281 { 282 struct device *dev = ctx->ohci->card.device; 283 struct ar_buffer *ab; 284 - dma_addr_t ab_bus; 285 size_t offset; 286 287 ab = dma_alloc_coherent(dev, PAGE_SIZE, &ab_bus, GFP_ATOMIC); ··· 536 context_add_buffer(struct context *ctx) 537 { 538 struct descriptor_buffer *desc; 539 - dma_addr_t bus_addr; 540 int offset; 541 542 /* ··· 1321 unsigned long flags; 1322 int retval = -EBUSY; 1323 __be32 *next_config_rom; 1324 - dma_addr_t next_config_rom_bus; 1325 1326 ohci = fw_ohci(card); 1327
··· 281 { 282 struct device *dev = ctx->ohci->card.device; 283 struct ar_buffer *ab; 284 + dma_addr_t uninitialized_var(ab_bus); 285 size_t offset; 286 287 ab = dma_alloc_coherent(dev, PAGE_SIZE, &ab_bus, GFP_ATOMIC); ··· 536 context_add_buffer(struct context *ctx) 537 { 538 struct descriptor_buffer *desc; 539 + dma_addr_t uninitialized_var(bus_addr); 540 int offset; 541 542 /* ··· 1321 unsigned long flags; 1322 int retval = -EBUSY; 1323 __be32 *next_config_rom; 1324 + dma_addr_t uninitialized_var(next_config_rom_bus); 1325 1326 ohci = fw_ohci(card); 1327