diff options
author | Matthias Schwarzott <zzam@gentoo.org> | 2017-11-05 17:25:06 +0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@s-opensource.com> | 2017-12-12 13:53:00 +0300 |
commit | 7c4f4d1d7e5e3a5efc0a75410c7dad1c6c0be838 (patch) | |
tree | afea74f5a5025adecf35be43a3df6fa380860e03 /drivers/media/pci/cx23885 | |
parent | 7e132dee584800e12f8d5539bdd02a08be98bdb4 (diff) | |
download | linux-7c4f4d1d7e5e3a5efc0a75410c7dad1c6c0be838.tar.xz |
media: cx23885: Use semicolon after assignment instead of comma
End assignments by semicolon instead of comma.
Signed-off-by: Matthias Schwarzott <zzam@gentoo.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
Diffstat (limited to 'drivers/media/pci/cx23885')
-rw-r--r-- | drivers/media/pci/cx23885/cx23885-dvb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/pci/cx23885/cx23885-dvb.c b/drivers/media/pci/cx23885/cx23885-dvb.c index b33ded461308..67ad04138183 100644 --- a/drivers/media/pci/cx23885/cx23885-dvb.c +++ b/drivers/media/pci/cx23885/cx23885-dvb.c @@ -1852,8 +1852,8 @@ static int dvb_register(struct cx23885_tsport *port) /* attach frontend */ memset(&si2165_pdata, 0, sizeof(si2165_pdata)); si2165_pdata.fe = &fe0->dvb.frontend; - si2165_pdata.chip_mode = SI2165_MODE_PLL_XTAL, - si2165_pdata.ref_freq_hz = 16000000, + si2165_pdata.chip_mode = SI2165_MODE_PLL_XTAL; + si2165_pdata.ref_freq_hz = 16000000; memset(&info, 0, sizeof(struct i2c_board_info)); strlcpy(info.type, "si2165", I2C_NAME_SIZE); info.addr = 0x64; |