serial: serial_cs: oxsemi quirk breaks resume

Quirk is applied on all cards with given manfid (is it that correct?).
Unfortunately, that quirk breaks resume on zaurus with billionton
bluetooth card inserted: c950ctrl is 0 and outb() faults.

I believe it is simply not a multiport card. (info->multi == 1). ...
... confirmed by printks.

Signed-off-by: Pavel Machek <pavel@ucw.cz>
Acked-by: Alan Cox <alan@lxorguk.ukuu.org.uk>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>

authored by Pavel Machek and committed by Greg Kroah-Hartman 18c576f9 2e2eb509

+2 -1
+2 -1
drivers/serial/serial_cs.c
··· 146 146 { 147 147 struct serial_info *info = link->priv; 148 148 149 - outb(12, info->c950ctrl + 1); 149 + if (info->c950ctrl) 150 + outb(12, info->c950ctrl + 1); 150 151 } 151 152 152 153 /* request_region? oxsemi branch does no request_region too... */