[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20150127000903.GM21293@sirena.org.uk>
Date: Tue, 27 Jan 2015 00:09:03 +0000
From: Mark Brown <broonie@...nel.org>
To: Ricardo Ribalda Delgado <ricardo.ribalda@...il.com>
Cc: Michal Simek <michal.simek@...inx.com>,
Sören Brinkmann <soren.brinkmann@...inx.com>,
linux-spi@...r.kernel.org, linux-arm-kernel@...ts.infradead.org,
linux-kernel@...r.kernel.org
Subject: Re: [PATCH 11/18] spi/xilinx: Remove rx_fn and tx_fn pointer
On Fri, Jan 23, 2015 at 05:08:43PM +0100, Ricardo Ribalda Delgado wrote:
> + switch (xspi->bits_per_word) {
> + case 8:
> + *(u8 *)(xspi->rx_ptr) = data;
> + break;
> + case 16:
> + *(u16 *)(xspi->rx_ptr) = data;
> + break;
> + case 32:
> *(u32 *)(xspi->rx_ptr) = data;
> - xspi->rx_ptr += 4;
> + break;
> }
Perhaps I'm missing something here but we only seem to be incrementing
rx_ptr for the 32 bit case here...
> + xspi->rx_ptr += xspi->bits_per_word/8;
...which looks to duplicate this which handles all cases. Also there's
a coding style thing - spaces around the / please.
Download attachment "signature.asc" of type "application/pgp-signature" (474 bytes)
Powered by blists - more mailing lists