Kaynağa Gözat

pcmcia: Fix ti12xx_2nd_slot_empty always failing

For TI 1520 and others, ti12xx_2nd_slot_empty was reading card detect from
the wrong slot, and always failing.

Signed-off-by: Alex Harford <alex.harford@inmotiontechnology.com>
Signed-off-by: Dominik Brodowski <linux@dominikbrodowski.net>
Alex Harford 17 yıl önce
ebeveyn
işleme
05f43d48dd
1 değiştirilmiş dosya ile 1 ekleme ve 1 silme
  1. 1 1
      drivers/pcmcia/ti113x.h

+ 1 - 1
drivers/pcmcia/ti113x.h

@@ -692,7 +692,7 @@ static int ti12xx_2nd_slot_empty(struct yenta_socket *socket)
 		goto out;
 
 	/* check state */
-	yenta_get_status(&socket->socket, &state);
+	yenta_get_status(&slot2->socket, &state);
 	if (state & SS_DETECT) {
 		ret = 0;
 		goto out;