diff options
author | Al Viro <viro@www.linux.org.uk> | 2005-08-25 01:24:21 -0400 |
---|---|---|
committer | Jeff Garzik <jgarzik@pobox.com> | 2005-09-06 22:47:00 -0400 |
commit | e345d5ef6d476cc236f64d90d9528143a70745c8 (patch) | |
tree | a0ac5df1abe0d0a0d361a4160e796a387a7e6d23 /drivers/net/sun3lance.c | |
parent | ce6623c3d8f932a15306355a7c9a0cdfdd6a26ec (diff) |
[PATCH] lvalues abuse in lance
result of comma operator is not an lvalue
Signed-off-by: Al Viro <viro@parcelfarce.linux.theplanet.co.uk>
Signed-off-by: Jeff Garzik <jgarzik@pobox.com>
Diffstat (limited to 'drivers/net/sun3lance.c')
-rw-r--r-- | drivers/net/sun3lance.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/sun3lance.c b/drivers/net/sun3lance.c index 1f43bbfbc1c7..5c8fcd40ef4d 100644 --- a/drivers/net/sun3lance.c +++ b/drivers/net/sun3lance.c | |||
@@ -162,7 +162,7 @@ struct lance_private { | |||
162 | #define MEM lp->mem | 162 | #define MEM lp->mem |
163 | #define DREG lp->iobase[0] | 163 | #define DREG lp->iobase[0] |
164 | #define AREG lp->iobase[1] | 164 | #define AREG lp->iobase[1] |
165 | #define REGA(a) ( AREG = (a), DREG ) | 165 | #define REGA(a) (*( AREG = (a), &DREG )) |
166 | 166 | ||
167 | /* Definitions for the Lance */ | 167 | /* Definitions for the Lance */ |
168 | 168 | ||