The 'clock' field was removed from the arcnet_local struct somewhere recently, and was replaced by clockp. arcnet/com20020-isa.c still uses 'clock' somewhere, so we got a compile error. No maintainer for arcnet was mentioned in MAINTAINERS, So here's the fix, to be applied to test8-pre5: --- linux/drivers/net/arcnet/com20020-isa.c Sat May 13 17:50:25 2000 +++ linux.vanilla/drivers/net/arcnet/com20020-isa.c Tue Sep 5 22:53:18 2000 @@ -205,7 +205,7 @@ case 6: /* Timeout */ lp->timeout = ints[6]; case 5: /* CKP value */ - lp->clock = ints[5]; + lp->clockp = ints[5]; case 4: /* Backplane flag */ lp->backplane = ints[4]; case 3: /* Node ID */ Dan Aloni (dax) | "At first I was afraid, I was petrified ; [EMAIL PROTECTED] | Kept thinking why I'd get this Oops [EMAIL PROTECTED] | when your patch was applied" ... - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] Please read the FAQ at http://www.tux.org/lkml/