The patch titled Fix struct device member name in PCMCIA au1000_generic has been removed from the -mm tree. Its filename was fix-struct-device-member-name-in-pcmcia-au1000_generic.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: Fix struct device member name in PCMCIA au1000_generic From: Yoichi Yuasa <yoichi_yuasa@xxxxxxxxxxxxxx> drivers/pcmcia/au1000_generic.c: In function 'au1x00_pcmcia_socket_probe': drivers/pcmcia/au1000_generic.c:375: error: 'struct device' has no member named 'dev' Signed-off-by: Yoichi Yuasa <yoichi_yuasa@xxxxxxxxxxxxxx> Cc: Ralf Baechle <ralf@xxxxxxxxxxxxxx> Cc: Jaroslav Kysela <perex@xxxxxxx> Cc: Takashi Iwai <tiwai@xxxxxxx> Cc: Greg KH <greg@xxxxxxxxx> Cc: Dominik Brodowski <linux@xxxxxxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/pcmcia/au1000_generic.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/pcmcia/au1000_generic.c~fix-struct-device-member-name-in-pcmcia-au1000_generic drivers/pcmcia/au1000_generic.c --- a/drivers/pcmcia/au1000_generic.c~fix-struct-device-member-name-in-pcmcia-au1000_generic +++ a/drivers/pcmcia/au1000_generic.c @@ -372,7 +372,7 @@ int au1x00_pcmcia_socket_probe(struct de skt->socket.resource_ops = &pccard_static_ops; skt->socket.ops = &au1x00_pcmcia_operations; skt->socket.owner = ops->owner; - skt->socket.dev.dev = dev; + skt->socket.dev.parent = dev; init_timer(&skt->poll_timer); skt->poll_timer.function = au1x00_pcmcia_poll_event; _ Patches currently in -mm which might be from yoichi_yuasa@xxxxxxxxxxxxxx are origin.patch git-input.patch git-mips.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