Commit 05f43d48 authored by Alex Harford's avatar Alex Harford Committed by Dominik Brodowski

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: default avatarAlex Harford <alex.harford@inmotiontechnology.com>
Signed-off-by: default avatarDominik Brodowski <linux@dominikbrodowski.net>
parent c1ac0228
...@@ -692,7 +692,7 @@ static int ti12xx_2nd_slot_empty(struct yenta_socket *socket) ...@@ -692,7 +692,7 @@ static int ti12xx_2nd_slot_empty(struct yenta_socket *socket)
goto out; goto out;
/* check state */ /* check state */
yenta_get_status(&socket->socket, &state); yenta_get_status(&slot2->socket, &state);
if (state & SS_DETECT) { if (state & SS_DETECT) {
ret = 0; ret = 0;
goto out; goto out;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment