提交 c4a47843 编写于 作者: J Jonas Aaberg 提交者: Linus Walleij

spi/pl022: fix build warnings

The driver build complains with newer compilers unless you
initialize this struct properly.
Reviewed-by: NViresh Kumar <viresh.kumar@st.com>
Signed-off-by: NJonas Aaberg <jonas.aberg@stericsson.com>
Signed-off-by: NLinus Walleij <linus.walleij@linaro.org>
上级 172289df
...@@ -1886,7 +1886,7 @@ static int pl022_setup(struct spi_device *spi) ...@@ -1886,7 +1886,7 @@ static int pl022_setup(struct spi_device *spi)
{ {
struct pl022_config_chip const *chip_info; struct pl022_config_chip const *chip_info;
struct chip_data *chip; struct chip_data *chip;
struct ssp_clock_params clk_freq = {0, }; struct ssp_clock_params clk_freq = { .cpsdvsr = 0, .scr = 0};
int status = 0; int status = 0;
struct pl022 *pl022 = spi_master_get_devdata(spi->master); struct pl022 *pl022 = spi_master_get_devdata(spi->master);
unsigned int bits = spi->bits_per_word; unsigned int bits = spi->bits_per_word;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册