提交 717942c4 编写于 作者: D Dave Stevenson 提交者: Zheng Zengkai

staging: vchiq_arm: Register bcm2835-codec as a platform driver

raspberrypi inclusion
category: feature
bugzilla: 50432

--------------------------------

Following the same pattern as bcm2835-camera and bcm2835-audio,
register the V4L2 codec driver as a platform driver
Signed-off-by: NDave Stevenson <dave.stevenson@raspberrypi.com>
Signed-off-by: NFang Yafen <yafen@iscas.ac.cn>
Signed-off-by: NZheng Zengkai <zhengzengkai@huawei.com>
上级 6d3fe3ac
...@@ -109,6 +109,7 @@ static struct class *vchiq_class; ...@@ -109,6 +109,7 @@ static struct class *vchiq_class;
static DEFINE_SPINLOCK(msg_queue_spinlock); static DEFINE_SPINLOCK(msg_queue_spinlock);
static struct platform_device *bcm2835_camera; static struct platform_device *bcm2835_camera;
static struct platform_device *bcm2835_audio; static struct platform_device *bcm2835_audio;
static struct platform_device *bcm2835_codec;
static struct platform_device *vcsm_cma; static struct platform_device *vcsm_cma;
static struct vchiq_drvdata bcm2835_drvdata = { static struct vchiq_drvdata bcm2835_drvdata = {
...@@ -2765,6 +2766,7 @@ static int vchiq_probe(struct platform_device *pdev) ...@@ -2765,6 +2766,7 @@ static int vchiq_probe(struct platform_device *pdev)
MAJOR(vchiq_devid), MINOR(vchiq_devid)); MAJOR(vchiq_devid), MINOR(vchiq_devid));
vcsm_cma = vchiq_register_child(pdev, "vcsm-cma"); vcsm_cma = vchiq_register_child(pdev, "vcsm-cma");
bcm2835_codec = vchiq_register_child(pdev, "bcm2835-codec");
bcm2835_camera = vchiq_register_child(pdev, "bcm2835-camera"); bcm2835_camera = vchiq_register_child(pdev, "bcm2835-camera");
bcm2835_audio = vchiq_register_child(pdev, "bcm2835_audio"); bcm2835_audio = vchiq_register_child(pdev, "bcm2835_audio");
...@@ -2781,6 +2783,7 @@ static int vchiq_remove(struct platform_device *pdev) ...@@ -2781,6 +2783,7 @@ static int vchiq_remove(struct platform_device *pdev)
{ {
platform_device_unregister(bcm2835_audio); platform_device_unregister(bcm2835_audio);
platform_device_unregister(bcm2835_camera); platform_device_unregister(bcm2835_camera);
platform_device_unregister(bcm2835_codec);
platform_device_unregister(vcsm_cma); platform_device_unregister(vcsm_cma);
vchiq_debugfs_deinit(); vchiq_debugfs_deinit();
device_destroy(vchiq_class, vchiq_devid); device_destroy(vchiq_class, vchiq_devid);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册