aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/tulip/de4x5.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/net/tulip/de4x5.c')
-rw-r--r--drivers/net/tulip/de4x5.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/tulip/de4x5.c b/drivers/net/tulip/de4x5.c
index 98e86826b2c..6430a2ec6db 100644
--- a/drivers/net/tulip/de4x5.c
+++ b/drivers/net/tulip/de4x5.c
@@ -3942,8 +3942,8 @@ PCI_signature(char *name, struct de4x5_private *lp)
3942 strcpy(name, "DE434/5"); 3942 strcpy(name, "DE434/5");
3943 return status; 3943 return status;
3944 } else { /* Search for a DEC name in the SROM */ 3944 } else { /* Search for a DEC name in the SROM */
3945 int i = *((char *)&lp->srom + 19) * 3; 3945 int tmp = *((char *)&lp->srom + 19) * 3;
3946 strncpy(name, (char *)&lp->srom + 26 + i, 8); 3946 strncpy(name, (char *)&lp->srom + 26 + tmp, 8);
3947 } 3947 }
3948 name[8] = '\0'; 3948 name[8] = '\0';
3949 for (i=0; i<siglen; i++) { 3949 for (i=0; i<siglen; i++) {