Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

iio: frequency: adf4350: fix an initialization

Sparse complains about this:
drivers/iio/frequency/adf4350.c:58:29: warning: Initializer entry defined twice
drivers/iio/frequency/adf4350.c:59:10: also defined here

It looks like '|' was intended here instead of ','.

Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Acked-by: Michael Hennerich <michael.hennerich@analog.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Dan Carpenter and committed by
Greg Kroah-Hartman
e86ee142 f9eb89e9

+1 -1
+1 -1
drivers/iio/frequency/adf4350.c
··· 54 54 static struct adf4350_platform_data default_pdata = { 55 55 .clkin = 122880000, 56 56 .channel_spacing = 10000, 57 - .r2_user_settings = ADF4350_REG2_PD_POLARITY_POS, 57 + .r2_user_settings = ADF4350_REG2_PD_POLARITY_POS | 58 58 ADF4350_REG2_CHARGE_PUMP_CURR_uA(2500), 59 59 .r3_user_settings = ADF4350_REG3_12BIT_CLKDIV_MODE(0), 60 60 .r4_user_settings = ADF4350_REG4_OUTPUT_PWR(3) |