diff options
-rw-r--r-- | arch/arm/plat-omap/dma.c | 2 | ||||
-rw-r--r-- | include/asm-arm/arch-omap/dma.h | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/arch/arm/plat-omap/dma.c b/arch/arm/plat-omap/dma.c index 9948d7a26339..0889769cb225 100644 --- a/arch/arm/plat-omap/dma.c +++ b/arch/arm/plat-omap/dma.c | |||
@@ -1422,11 +1422,13 @@ EXPORT_SYMBOL(omap_request_dma); | |||
1422 | EXPORT_SYMBOL(omap_free_dma); | 1422 | EXPORT_SYMBOL(omap_free_dma); |
1423 | EXPORT_SYMBOL(omap_start_dma); | 1423 | EXPORT_SYMBOL(omap_start_dma); |
1424 | EXPORT_SYMBOL(omap_stop_dma); | 1424 | EXPORT_SYMBOL(omap_stop_dma); |
1425 | EXPORT_SYMBOL(omap_set_dma_callback); | ||
1425 | EXPORT_SYMBOL(omap_enable_dma_irq); | 1426 | EXPORT_SYMBOL(omap_enable_dma_irq); |
1426 | EXPORT_SYMBOL(omap_disable_dma_irq); | 1427 | EXPORT_SYMBOL(omap_disable_dma_irq); |
1427 | 1428 | ||
1428 | EXPORT_SYMBOL(omap_set_dma_transfer_params); | 1429 | EXPORT_SYMBOL(omap_set_dma_transfer_params); |
1429 | EXPORT_SYMBOL(omap_set_dma_color_mode); | 1430 | EXPORT_SYMBOL(omap_set_dma_color_mode); |
1431 | EXPORT_SYMBOL(omap_set_dma_write_mode); | ||
1430 | 1432 | ||
1431 | EXPORT_SYMBOL(omap_set_dma_src_params); | 1433 | EXPORT_SYMBOL(omap_set_dma_src_params); |
1432 | EXPORT_SYMBOL(omap_set_dma_src_index); | 1434 | EXPORT_SYMBOL(omap_set_dma_src_index); |
diff --git a/include/asm-arm/arch-omap/dma.h b/include/asm-arm/arch-omap/dma.h index 1b1b02307e77..33cd48d9a853 100644 --- a/include/asm-arm/arch-omap/dma.h +++ b/include/asm-arm/arch-omap/dma.h | |||
@@ -338,13 +338,13 @@ struct omap_dma_channel_params { | |||
338 | 338 | ||
339 | int src_port; /* Only on OMAP1 REVISIT: Is this needed? */ | 339 | int src_port; /* Only on OMAP1 REVISIT: Is this needed? */ |
340 | int src_amode; /* constant , post increment, indexed , double indexed */ | 340 | int src_amode; /* constant , post increment, indexed , double indexed */ |
341 | int src_start; /* source address : physical */ | 341 | unsigned long src_start; /* source address : physical */ |
342 | int src_ei; /* source element index */ | 342 | int src_ei; /* source element index */ |
343 | int src_fi; /* source frame index */ | 343 | int src_fi; /* source frame index */ |
344 | 344 | ||
345 | int dst_port; /* Only on OMAP1 REVISIT: Is this needed? */ | 345 | int dst_port; /* Only on OMAP1 REVISIT: Is this needed? */ |
346 | int dst_amode; /* constant , post increment, indexed , double indexed */ | 346 | int dst_amode; /* constant , post increment, indexed , double indexed */ |
347 | int dst_start; /* source address : physical */ | 347 | unsigned long dst_start; /* source address : physical */ |
348 | int dst_ei; /* source element index */ | 348 | int dst_ei; /* source element index */ |
349 | int dst_fi; /* source frame index */ | 349 | int dst_fi; /* source frame index */ |
350 | 350 | ||