[2.5 patch] postfix a constat in mptbase.c with ULL

Adrian Bunk (bunk@fs.tum.de)
Mon, 30 Jun 2003 22:44:29 +0200


The patch below postfixes a constant in mptbase.c that is on 32 bit
archs too big for a long with ULL.

Please apply
Adrian

--- linux-2.5.73-not-full/drivers/message/fusion/mptbase.c.old 2003-06-23 23:07:57.000000000 +0200
+++ linux-2.5.73-not-full/drivers/message/fusion/mptbase.c 2003-06-23 23:08:27.000000000 +0200
@@ -1279,7 +1279,7 @@
u32 psize;
int ii;
int r = -ENODEV;
- u64 mask = 0xffffffffffffffff;
+ u64 mask = 0xffffffffffffffffULL;

if (pci_enable_device(pdev))
return r;
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/