The patch titled SPI: add 3wire mode flag (fix) has been removed from the -mm tree. Its filename was spi-add-3wire-mode-flag-fix.patch This patch was dropped because it was folded into spi-add-3wire-mode-flag.patch ------------------------------------------------------ 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 git-avr32.patch pm-do-not-use-saved_state-from-struct-dev_pm_info-on-arm.patch git-leds.patch git-mmc.patch git-mtd.patch git-netdev-all.patch git-backlight.patch geode-basic-infrastructure-support-for-amd-geode-class.patch char-genrtc-use-wait_event_interruptible.patch drivers-pmc-msp71xx-gpio-char-driver.patch spi-controller-drivers-check-for-unsupported-modes.patch spi-add-3wire-mode-flag.patch spi-add-3wire-mode-flag-fix.patch spidev-compiler-warning-gone.patch spi_lm70llp-parport-adapter-driver-correction.patch spi_mpc83xxc-underclocking-hotfix.patch atmel_spi-minor-updates.patch s3c24xx-spi-controllers-both-select-bitbang.patch spi-master-driver-for-xilinx-virtex-fix-2.patch spi-omap2_mcspi-driver-cleanups.patch rtc-ds1307-cleanups.patch rtc-rs5c372-becomes-a-new-style-i2c-driver.patch thecus-n2100-register-rtc-rs5c372-i2c-device.patch rtc-make-example-code-jump-to-done-instead-of-return-when-ioctl-not-supported.patch rtc-dev-return-enotty-in-ioctl-if-irq_set_freq-is-not-implemented-by-driver.patch driver-for-the-atmel-on-chip-rtc-on-at32ap700x-devices.patch driver-for-the-atmel-on-chip-rtc-on-at32ap700x-devices-fix.patch driver-for-the-atmel-on-chip-rtc-on-at32ap700x-devices-fix-2.patch driver-for-the-atmel-on-chip-rtc-on-at32ap700x-devices-fix-3.patch rtc-kconfig-tweax.patch rtc-add-rtc-m41t80-driver-take-2.patch rtc-add-rtc-m41t80-driver-take-2-fix.patch rtc-watchdog-support-for-rtc-m41t80-driver-take-2.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