#include <linux/host1x.h>
#include <linux/module.h>
#include <linux/platform_device.h>
#include <media/v4l2-event.h>
#include "video.h"
static void tegra_v4l2_dev_release(struct v4l2_device *v4l2_dev)
{ … }
static void tegra_v4l2_dev_notify(struct v4l2_subdev *sd,
unsigned int notification, void *arg)
{ … }
static int host1x_video_probe(struct host1x_device *dev)
{ … }
static int host1x_video_remove(struct host1x_device *dev)
{ … }
static const struct of_device_id host1x_video_subdevs[] = …;
static struct host1x_driver host1x_video_driver = …;
static struct platform_driver * const drivers[] = …;
static int __init host1x_video_init(void)
{ … }
module_init(…) …;
static void __exit host1x_video_exit(void)
{ … }
module_exit(host1x_video_exit);
MODULE_AUTHOR(…) …;
MODULE_DESCRIPTION(…) …;
MODULE_LICENSE(…) …;