mirror of https://gitee.com/openkylin/linux.git
[media] soc_camera/mx1_camera: Fix warnings related to spacing
Fixes the following checkpatch warnings: WARNING: unnecessary whitespace before a quoted newline WARNING: please, no space before tabs Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org> Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
e35abd4472
commit
29407b9381
|
@ -776,7 +776,7 @@ static int __init mx1_camera_probe(struct platform_device *pdev)
|
|||
/* request irq */
|
||||
err = claim_fiq(&fh);
|
||||
if (err) {
|
||||
dev_err(&pdev->dev, "Camera interrupt register failed \n");
|
||||
dev_err(&pdev->dev, "Camera interrupt register failed\n");
|
||||
goto exit_free_dma;
|
||||
}
|
||||
|
||||
|
@ -853,7 +853,7 @@ static int __exit mx1_camera_remove(struct platform_device *pdev)
|
|||
}
|
||||
|
||||
static struct platform_driver mx1_camera_driver = {
|
||||
.driver = {
|
||||
.driver = {
|
||||
.name = DRIVER_NAME,
|
||||
},
|
||||
.remove = __exit_p(mx1_camera_remove),
|
||||
|
|
Loading…
Reference in New Issue