Loading drivers/spi/spi-bitbang.c +8 −11 Original line number Diff line number Diff line Loading @@ -346,11 +346,7 @@ static void bitbang_work(struct work_struct *work) if (t->delay_usecs) udelay(t->delay_usecs); if (!cs_change) continue; if (t->transfer_list.next == &m->transfers) break; if (cs_change && !list_is_last(&t->transfer_list, &m->transfers)) { /* sometimes a short mid-message deselect of the chip * may be needed to terminate a mode or command */ Loading @@ -358,6 +354,7 @@ static void bitbang_work(struct work_struct *work) bitbang->chipselect(spi, BITBANG_CS_INACTIVE); ndelay(nsecs); } } m->status = status; m->complete(m->context); Loading Loading
drivers/spi/spi-bitbang.c +8 −11 Original line number Diff line number Diff line Loading @@ -346,11 +346,7 @@ static void bitbang_work(struct work_struct *work) if (t->delay_usecs) udelay(t->delay_usecs); if (!cs_change) continue; if (t->transfer_list.next == &m->transfers) break; if (cs_change && !list_is_last(&t->transfer_list, &m->transfers)) { /* sometimes a short mid-message deselect of the chip * may be needed to terminate a mode or command */ Loading @@ -358,6 +354,7 @@ static void bitbang_work(struct work_struct *work) bitbang->chipselect(spi, BITBANG_CS_INACTIVE); ndelay(nsecs); } } m->status = status; m->complete(m->context); Loading