Skip to content

Commit

Permalink
pcnet_cs: Fix misuse of the equality operator.
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Cord Walter authored and davem330 committed Feb 3, 2009
1 parent 67dd824 commit a9d3a14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/net/pcmcia/pcnet_cs.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit a9d3a14

Please sign in to comment.