Skip to content

Commit cbbfbbf

Browse files
committed
fixup! dmaengine: apple-sio: Add Apple SIO driver
1 parent c771c88 commit cbbfbbf

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

drivers/dma/apple-sio.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -511,13 +511,13 @@ static void sio_recv_msg(void *cookie, u8 ep, u64 msg)
511511
struct sio_data *sio = cookie;
512512
struct sio_tagdata *tags = &sio->tags;
513513
u32 data;
514-
u8 param, type, tag, sioep;
514+
u8 type, tag, sioep;
515515

516516
if (ep != EP_SIO)
517517
goto unknown;
518518

519519
data = FIELD_GET(SIOMSG_DATA, msg);
520-
param = FIELD_GET(SIOMSG_PARAM, msg);
520+
// param = FIELD_GET(SIOMSG_PARAM, msg);
521521
type = FIELD_GET(SIOMSG_TYPE, msg);
522522
tag = FIELD_GET(SIOMSG_TAG, msg);
523523
sioep = FIELD_GET(SIOMSG_EP, msg);

0 commit comments

Comments
 (0)