Messages in this thread Patch in this message |  | | Date | Thu, 7 Sep 2000 01:45:20 +0200 (IST) | From | Dan Aloni <> | Subject | [PATCH] arcnet/com20020-isa.c - compile fix |
| |
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 ; karrde@callisto.yi.org | Kept thinking why I'd get this Oops danaloni@inter.net.il | when your patch was applied" ...
- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org Please read the FAQ at http://www.tux.org/lkml/
|  |