[media] [trivial] s5p: Fix typo in mixer_drv.c and hdmi_drv.c

Correct typo "sucessful" to "successful" in
drivers/media/video/s5p-tv/mixer_drv.c
drivers/media/video/s5p-tv/hdmi_drv.c

Signed-off-by: Masanari Iida <standby24x7@gmail.com>
Acked-by: Kyungmin Park <kyungmin.park@samsung.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
Masanari Iida 2012-01-29 08:50:53 -03:00 коммит произвёл Mauro Carvalho Chehab
Родитель c659395935
Коммит 41292b1611
2 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -962,7 +962,7 @@ static int __devinit hdmi_probe(struct platform_device *pdev)
/* storing subdev for call that have only access to struct device */
dev_set_drvdata(dev, sd);
dev_info(dev, "probe sucessful\n");
dev_info(dev, "probe successful\n");
return 0;
@ -1000,7 +1000,7 @@ static int __devexit hdmi_remove(struct platform_device *pdev)
iounmap(hdmi_dev->regs);
hdmi_resources_cleanup(hdmi_dev);
kfree(hdmi_dev);
dev_info(dev, "remove sucessful\n");
dev_info(dev, "remove successful\n");
return 0;
}

Просмотреть файл

@ -444,7 +444,7 @@ static int __devexit mxr_remove(struct platform_device *pdev)
kfree(mdev);
dev_info(dev, "remove sucessful\n");
dev_info(dev, "remove successful\n");
return 0;
}