Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

media: ti: vpe: Export vpdma_load_firmware() function

Export vpdma_load_firmware() function which is needed by TI VIP to load
the VPDMA firmware.

Signed-off-by: Yemike Abhilash Chandra <y-abhilashchandra@ti.com>
Signed-off-by: Hans Verkuil <hverkuil+cisco@kernel.org>

authored by

Yemike Abhilash Chandra and committed by
Hans Verkuil
4c978457 4011e67a

+5 -1
+2 -1
drivers/media/platform/ti/vpe/vpdma.c
··· 1135 1135 release_firmware(f); 1136 1136 } 1137 1137 1138 - static int vpdma_load_firmware(struct vpdma_data *vpdma) 1138 + int vpdma_load_firmware(struct vpdma_data *vpdma) 1139 1139 { 1140 1140 int r; 1141 1141 struct device *dev = &vpdma->pdev->dev; ··· 1152 1152 1153 1153 return 0; 1154 1154 } 1155 + EXPORT_SYMBOL_GPL(vpdma_load_firmware); 1155 1156 1156 1157 int vpdma_create(struct platform_device *pdev, struct vpdma_data *vpdma, 1157 1158 void (*cb)(struct platform_device *pdev))
+3
drivers/media/platform/ti/vpe/vpdma.h
··· 281 281 int vpdma_create(struct platform_device *pdev, struct vpdma_data *vpdma, 282 282 void (*cb)(struct platform_device *pdev)); 283 283 284 + /* load vpdma firmware*/ 285 + int vpdma_load_firmware(struct vpdma_data *vpdma); 286 + 284 287 #endif