19 Jun
2013
19 Jun
'13
9:24 p.m.
On Wed, Jun 19, 2013 at 09:01:33PM +0200, Arnd Bergmann wrote:
On Wednesday 19 June 2013, Tomasz Figa wrote:
if (plchan->mux_use++ == 0 && pd->get_signal) {
ret = pd->get_signal(plchan->cd);
ret = (pd->get_signal)(plchan->cd);
Hmm, that's strange. The former is a completely valid piece of code...
get_signal is a macro defined in include/linux/signal.h. If that header gets included, neither of the two is valid.
Ah, that'll be it. I'll post a patch to rename...