Re: [PATCH] cciss: Fix warnings during compilation under32bitenvironment

From: Alan Cox
Date: Fri Apr 20 2007 - 09:34:01 EST


> > #if (BITS_PER_LONG > 32) || defined(CONFIG_LBD)
> > #define sector_upper_32(sector) ((sector) >> 32)
> > #else
> > #define sector_upper_32(sector) (0)
> > #endif

Gak

Just do

sector_upper_32(sector) (((sector) >> 31) >> 1)

and lose all the ifdefs,

Alan
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/