diff options
author | Al Viro <viro@ftp.linux.org.uk> | 2007-07-26 12:36:29 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-07-26 14:11:57 -0400 |
commit | c7b17cb13eaad6adf2f169840ccb193d4376e4b1 (patch) | |
tree | c0e9dd25ab3f4d2fc4106c9f4ed93877f6bf043a /drivers/net/ax88796.c | |
parent | 5b26e64ea39e45802c5736c8261bf8a8704d212f (diff) |
ax88796 (address space): cast to unsigned long, not long
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Acked-by: Jeff Garzik <jeff@garzik.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/net/ax88796.c')
-rw-r--r-- | drivers/net/ax88796.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ax88796.c b/drivers/net/ax88796.c index 1d882360b34d..e43e8047b90e 100644 --- a/drivers/net/ax88796.c +++ b/drivers/net/ax88796.c | |||
@@ -819,7 +819,7 @@ static int ax_probe(struct platform_device *pdev) | |||
819 | } | 819 | } |
820 | 820 | ||
821 | ei_status.mem = ioremap(res->start, size); | 821 | ei_status.mem = ioremap(res->start, size); |
822 | dev->base_addr = (long)ei_status.mem; | 822 | dev->base_addr = (unsigned long)ei_status.mem; |
823 | 823 | ||
824 | if (ei_status.mem == NULL) { | 824 | if (ei_status.mem == NULL) { |
825 | dev_err(&pdev->dev, "Cannot ioremap area (%08zx,%08zx)\n", | 825 | dev_err(&pdev->dev, "Cannot ioremap area (%08zx,%08zx)\n", |