You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
pcnet_cs: Fix misuse of the equality operator.
Signed-off-by: Cord Walter <qord@cwalter.net> Signed-off-by: Komuro <komurojun-mbn@nifty.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
67dd82462d
commit
a9d3a14692
@@ -586,7 +586,7 @@ static int pcnet_config(struct pcmcia_device *link)
|
||||
}
|
||||
|
||||
if ((link->conf.ConfigBase == 0x03c0)
|
||||
&& (link->manf_id == 0x149) && (link->card_id = 0xc1ab)) {
|
||||
&& (link->manf_id == 0x149) && (link->card_id == 0xc1ab)) {
|
||||
printk(KERN_INFO "pcnet_cs: this is an AX88190 card!\n");
|
||||
printk(KERN_INFO "pcnet_cs: use axnet_cs instead.\n");
|
||||
goto failed;
|
||||
|
||||
Reference in New Issue
Block a user