fmvj18x_cs: add NextCom NC5310 rev B support

fmvj18x_cs: The manfid of "NextCom NC5310 rev B" is MANF_ID_FUJITSU.
but this card is MBH10302 based card.
use ConfigBase to detect the cardtype for this card.

Signed-off-by: Komuro <komurojun-mbn@nifty.com>
Signed-off-by: Jeff Garzik <jgarzik@redhat.com>

authored by Komuro and committed by Jeff Garzik bdefff1f 43fc63dc

+3 -1
+3 -1
drivers/net/pcmcia/fmvj18x_cs.c
··· 391 391 cardtype = CONTEC; 392 392 break; 393 393 case MANFID_FUJITSU: 394 - if (link->card_id == PRODID_FUJITSU_MBH10302) 394 + if (link->conf.ConfigBase == 0x0fe0) 395 + cardtype = MBH10302; 396 + else if (link->card_id == PRODID_FUJITSU_MBH10302) 395 397 /* RATOC REX-5588/9822/4886's PRODID are 0004(=MBH10302), 396 398 but these are MBH10304 based card. */ 397 399 cardtype = MBH10304;