The patch titled SPI: at25: do not use pointer before assignment has been removed from the -mm tree. Its filename was spi-at25-do-not-use-pointer-before-assignment.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: SPI: at25: do not use pointer before assignment From: Atsushi Nemoto <anemo@xxxxxxxxxxxxx> Prevents a potential oops with CONFIG_SPI_DEBUG given flakey hardware or incorrect configuration. Signed-off-by: Atsushi Nemoto <anemo@xxxxxxxxxxxxx> Signed-off-by: David Brownell <dbrownell@xxxxxxxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/spi/at25.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/spi/at25.c~spi-at25-do-not-use-pointer-before-assignment drivers/spi/at25.c --- a/drivers/spi/at25.c~spi-at25-do-not-use-pointer-before-assignment +++ a/drivers/spi/at25.c @@ -291,7 +291,7 @@ static int at25_probe(struct spi_device */ sr = spi_w8r8(spi, AT25_RDSR); if (sr < 0 || sr & AT25_SR_nRDY) { - dev_dbg(&at25->spi->dev, "rdsr --> %d (%02x)\n", sr, sr); + dev_dbg(&spi->dev, "rdsr --> %d (%02x)\n", sr, sr); err = -ENXIO; goto fail; } _ Patches currently in -mm which might be from anemo@xxxxxxxxxxxxx are origin.patch git-kbuild.patch git-netdev-all.patch 8139too-fix-irq-problem-with-napi-netpoll.patch serial-allocate-minor-device-numbers-for.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