The patch titled SPI: add 3wire mode flag (fix) has been added to the -mm tree. Its filename is spi-add-3wire-mode-flag-fix.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: SPI: add 3wire mode flag (fix) From: David Brownell <david-b@xxxxxxxxxxx> Add missing parenthesis ... evidently GCC warns inconsistently. Signed-off-by: David Brownell <dbrownell@xxxxxxxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/hwmon/lm70.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/hwmon/lm70.c~spi-add-3wire-mode-flag-fix drivers/hwmon/lm70.c --- a/drivers/hwmon/lm70.c~spi-add-3wire-mode-flag-fix +++ a/drivers/hwmon/lm70.c @@ -97,7 +97,7 @@ static int __devinit lm70_probe(struct s int status; /* signaling is SPI_MODE_0 on a 3-wire link (shared SI/SO) */ - if ((spi->mode & (SPI_CPOL|SPI_CPHA)) || !spi->mode & SPI_3WIRE) + if ((spi->mode & (SPI_CPOL|SPI_CPHA)) || !(spi->mode & SPI_3WIRE)) return -EINVAL; p_lm70 = kzalloc(sizeof *p_lm70, GFP_KERNEL); _ Patches currently in -mm which might be from david-b@xxxxxxxxxxx are spi-doc-update-describe-clock-mode-bits.patch git-leds.patch git-mmc.patch at91-fix-enable-disable_irq_wake-symmetry-in-pcmcia-driver.patch ehci-fsl-fix-cache-coherency-problem-on-system-with-large-memory.patch spi-controller-drivers-check-for-unsupported-modes.patch spi-add-3wire-mode-flag.patch spi-add-3wire-mode-flag-fix.patch rtc-ds1307-cleanups.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html