[media] media: radio: CodingStyle changes on si4713
Minor changes to make alignment match on open parenthesis. Signed-off-by: Eduardo Valentin <edubezval@gmail.com> Acked-by: Hans Verkuil <hans.verkuil@cisco.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
b09e71a8de
commit
385624a8e7
|
@ -94,7 +94,7 @@ static int radio_si4713_querycap(struct file *file, void *priv,
|
||||||
{
|
{
|
||||||
strlcpy(capability->driver, "radio-si4713", sizeof(capability->driver));
|
strlcpy(capability->driver, "radio-si4713", sizeof(capability->driver));
|
||||||
strlcpy(capability->card, "Silicon Labs Si4713 Modulator",
|
strlcpy(capability->card, "Silicon Labs Si4713 Modulator",
|
||||||
sizeof(capability->card));
|
sizeof(capability->card));
|
||||||
capability->capabilities = V4L2_CAP_MODULATOR | V4L2_CAP_RDS_OUTPUT;
|
capability->capabilities = V4L2_CAP_MODULATOR | V4L2_CAP_RDS_OUTPUT;
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
@ -102,7 +102,7 @@ static int radio_si4713_querycap(struct file *file, void *priv,
|
||||||
|
|
||||||
/* radio_si4713_queryctrl - enumerate control items */
|
/* radio_si4713_queryctrl - enumerate control items */
|
||||||
static int radio_si4713_queryctrl(struct file *file, void *priv,
|
static int radio_si4713_queryctrl(struct file *file, void *priv,
|
||||||
struct v4l2_queryctrl *qc)
|
struct v4l2_queryctrl *qc)
|
||||||
{
|
{
|
||||||
/* Must be sorted from low to high control ID! */
|
/* Must be sorted from low to high control ID! */
|
||||||
static const u32 user_ctrls[] = {
|
static const u32 user_ctrls[] = {
|
||||||
|
@ -152,7 +152,7 @@ static int radio_si4713_queryctrl(struct file *file, void *priv,
|
||||||
return v4l2_ctrl_query_fill(qc, 0, 0, 0, 0);
|
return v4l2_ctrl_query_fill(qc, 0, 0, 0, 0);
|
||||||
|
|
||||||
return v4l2_device_call_until_err(&rsdev->v4l2_dev, 0, core,
|
return v4l2_device_call_until_err(&rsdev->v4l2_dev, 0, core,
|
||||||
queryctrl, qc);
|
queryctrl, qc);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -165,66 +165,66 @@ static inline struct v4l2_device *get_v4l2_dev(struct file *file)
|
||||||
}
|
}
|
||||||
|
|
||||||
static int radio_si4713_g_ext_ctrls(struct file *file, void *p,
|
static int radio_si4713_g_ext_ctrls(struct file *file, void *p,
|
||||||
struct v4l2_ext_controls *vecs)
|
struct v4l2_ext_controls *vecs)
|
||||||
{
|
{
|
||||||
return v4l2_device_call_until_err(get_v4l2_dev(file), 0, core,
|
return v4l2_device_call_until_err(get_v4l2_dev(file), 0, core,
|
||||||
g_ext_ctrls, vecs);
|
g_ext_ctrls, vecs);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int radio_si4713_s_ext_ctrls(struct file *file, void *p,
|
static int radio_si4713_s_ext_ctrls(struct file *file, void *p,
|
||||||
struct v4l2_ext_controls *vecs)
|
struct v4l2_ext_controls *vecs)
|
||||||
{
|
{
|
||||||
return v4l2_device_call_until_err(get_v4l2_dev(file), 0, core,
|
return v4l2_device_call_until_err(get_v4l2_dev(file), 0, core,
|
||||||
s_ext_ctrls, vecs);
|
s_ext_ctrls, vecs);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int radio_si4713_g_ctrl(struct file *file, void *p,
|
static int radio_si4713_g_ctrl(struct file *file, void *p,
|
||||||
struct v4l2_control *vc)
|
struct v4l2_control *vc)
|
||||||
{
|
{
|
||||||
return v4l2_device_call_until_err(get_v4l2_dev(file), 0, core,
|
return v4l2_device_call_until_err(get_v4l2_dev(file), 0, core,
|
||||||
g_ctrl, vc);
|
g_ctrl, vc);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int radio_si4713_s_ctrl(struct file *file, void *p,
|
static int radio_si4713_s_ctrl(struct file *file, void *p,
|
||||||
struct v4l2_control *vc)
|
struct v4l2_control *vc)
|
||||||
{
|
{
|
||||||
return v4l2_device_call_until_err(get_v4l2_dev(file), 0, core,
|
return v4l2_device_call_until_err(get_v4l2_dev(file), 0, core,
|
||||||
s_ctrl, vc);
|
s_ctrl, vc);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int radio_si4713_g_modulator(struct file *file, void *p,
|
static int radio_si4713_g_modulator(struct file *file, void *p,
|
||||||
struct v4l2_modulator *vm)
|
struct v4l2_modulator *vm)
|
||||||
{
|
{
|
||||||
return v4l2_device_call_until_err(get_v4l2_dev(file), 0, tuner,
|
return v4l2_device_call_until_err(get_v4l2_dev(file), 0, tuner,
|
||||||
g_modulator, vm);
|
g_modulator, vm);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int radio_si4713_s_modulator(struct file *file, void *p,
|
static int radio_si4713_s_modulator(struct file *file, void *p,
|
||||||
const struct v4l2_modulator *vm)
|
const struct v4l2_modulator *vm)
|
||||||
{
|
{
|
||||||
return v4l2_device_call_until_err(get_v4l2_dev(file), 0, tuner,
|
return v4l2_device_call_until_err(get_v4l2_dev(file), 0, tuner,
|
||||||
s_modulator, vm);
|
s_modulator, vm);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int radio_si4713_g_frequency(struct file *file, void *p,
|
static int radio_si4713_g_frequency(struct file *file, void *p,
|
||||||
struct v4l2_frequency *vf)
|
struct v4l2_frequency *vf)
|
||||||
{
|
{
|
||||||
return v4l2_device_call_until_err(get_v4l2_dev(file), 0, tuner,
|
return v4l2_device_call_until_err(get_v4l2_dev(file), 0, tuner,
|
||||||
g_frequency, vf);
|
g_frequency, vf);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int radio_si4713_s_frequency(struct file *file, void *p,
|
static int radio_si4713_s_frequency(struct file *file, void *p,
|
||||||
struct v4l2_frequency *vf)
|
struct v4l2_frequency *vf)
|
||||||
{
|
{
|
||||||
return v4l2_device_call_until_err(get_v4l2_dev(file), 0, tuner,
|
return v4l2_device_call_until_err(get_v4l2_dev(file), 0, tuner,
|
||||||
s_frequency, vf);
|
s_frequency, vf);
|
||||||
}
|
}
|
||||||
|
|
||||||
static long radio_si4713_default(struct file *file, void *p,
|
static long radio_si4713_default(struct file *file, void *p,
|
||||||
bool valid_prio, int cmd, void *arg)
|
bool valid_prio, int cmd, void *arg)
|
||||||
{
|
{
|
||||||
return v4l2_device_call_until_err(get_v4l2_dev(file), 0, core,
|
return v4l2_device_call_until_err(get_v4l2_dev(file), 0, core,
|
||||||
ioctl, cmd, arg);
|
ioctl, cmd, arg);
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct v4l2_ioctl_ops radio_si4713_ioctl_ops = {
|
static struct v4l2_ioctl_ops radio_si4713_ioctl_ops = {
|
||||||
|
@ -285,13 +285,13 @@ static int radio_si4713_pdriver_probe(struct platform_device *pdev)
|
||||||
adapter = i2c_get_adapter(pdata->i2c_bus);
|
adapter = i2c_get_adapter(pdata->i2c_bus);
|
||||||
if (!adapter) {
|
if (!adapter) {
|
||||||
dev_err(&pdev->dev, "Cannot get i2c adapter %d\n",
|
dev_err(&pdev->dev, "Cannot get i2c adapter %d\n",
|
||||||
pdata->i2c_bus);
|
pdata->i2c_bus);
|
||||||
rval = -ENODEV;
|
rval = -ENODEV;
|
||||||
goto unregister_v4l2_dev;
|
goto unregister_v4l2_dev;
|
||||||
}
|
}
|
||||||
|
|
||||||
sd = v4l2_i2c_new_subdev_board(&rsdev->v4l2_dev, adapter,
|
sd = v4l2_i2c_new_subdev_board(&rsdev->v4l2_dev, adapter,
|
||||||
pdata->subdev_board_info, NULL);
|
pdata->subdev_board_info, NULL);
|
||||||
if (!sd) {
|
if (!sd) {
|
||||||
dev_err(&pdev->dev, "Cannot get v4l2 subdevice\n");
|
dev_err(&pdev->dev, "Cannot get v4l2 subdevice\n");
|
||||||
rval = -ENODEV;
|
rval = -ENODEV;
|
||||||
|
@ -306,7 +306,7 @@ static int radio_si4713_pdriver_probe(struct platform_device *pdev)
|
||||||
}
|
}
|
||||||
|
|
||||||
memcpy(rsdev->radio_dev, &radio_si4713_vdev_template,
|
memcpy(rsdev->radio_dev, &radio_si4713_vdev_template,
|
||||||
sizeof(radio_si4713_vdev_template));
|
sizeof(radio_si4713_vdev_template));
|
||||||
video_set_drvdata(rsdev->radio_dev, rsdev);
|
video_set_drvdata(rsdev->radio_dev, rsdev);
|
||||||
if (video_register_device(rsdev->radio_dev, VFL_TYPE_RADIO, radio_nr)) {
|
if (video_register_device(rsdev->radio_dev, VFL_TYPE_RADIO, radio_nr)) {
|
||||||
dev_err(&pdev->dev, "Could not register video device.\n");
|
dev_err(&pdev->dev, "Could not register video device.\n");
|
||||||
|
@ -331,13 +331,12 @@ exit:
|
||||||
static int radio_si4713_pdriver_remove(struct platform_device *pdev)
|
static int radio_si4713_pdriver_remove(struct platform_device *pdev)
|
||||||
{
|
{
|
||||||
struct v4l2_device *v4l2_dev = platform_get_drvdata(pdev);
|
struct v4l2_device *v4l2_dev = platform_get_drvdata(pdev);
|
||||||
struct radio_si4713_device *rsdev = container_of(v4l2_dev,
|
|
||||||
struct radio_si4713_device,
|
|
||||||
v4l2_dev);
|
|
||||||
struct v4l2_subdev *sd = list_entry(v4l2_dev->subdevs.next,
|
struct v4l2_subdev *sd = list_entry(v4l2_dev->subdevs.next,
|
||||||
struct v4l2_subdev, list);
|
struct v4l2_subdev, list);
|
||||||
struct i2c_client *client = v4l2_get_subdevdata(sd);
|
struct i2c_client *client = v4l2_get_subdevdata(sd);
|
||||||
|
struct radio_si4713_device *rsdev;
|
||||||
|
|
||||||
|
rsdev = container_of(v4l2_dev, struct radio_si4713_device, v4l2_dev);
|
||||||
video_unregister_device(rsdev->radio_dev);
|
video_unregister_device(rsdev->radio_dev);
|
||||||
i2c_put_adapter(client->adapter);
|
i2c_put_adapter(client->adapter);
|
||||||
v4l2_device_unregister(&rsdev->v4l2_dev);
|
v4l2_device_unregister(&rsdev->v4l2_dev);
|
||||||
|
|
Loading…
Reference in New Issue