The patch titled drivers/edac/i3000: document type promotion has been removed from the -mm tree. Its filename was drivers-edac-i3000-document-type-promotion.patch This patch was dropped because it was merged into mainline or a subsystem tree The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: drivers/edac/i3000: document type promotion From: Jason Uhlenkott <juhlenko@xxxxxxxxxx> By popular request, add a comment documenting the implicit type promotion here. Signed-off-by: Jason Uhlenkott <juhlenko@xxxxxxxxxx> Signed-off-by: Doug Thompson <dougthompson@xxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/edac/i3000_edac.c | 7 +++++++ 1 file changed, 7 insertions(+) diff -puN drivers/edac/i3000_edac.c~drivers-edac-i3000-document-type-promotion drivers/edac/i3000_edac.c --- a/drivers/edac/i3000_edac.c~drivers-edac-i3000-document-type-promotion +++ a/drivers/edac/i3000_edac.c @@ -44,6 +44,13 @@ */ #define I3000_DEAP_GRAIN (1 << 7) +/* + * Helper functions to decode the DEAP/EDEAP hardware registers. + * + * The type promotion here is deliberate; we're deriving an + * unsigned long pfn and offset from hardware regs which are u8/u32. + */ + static inline unsigned long deap_pfn(u8 edeap, u32 deap) { deap >>= PAGE_SHIFT; _ Patches currently in -mm which might be from juhlenko@xxxxxxxxxx are origin.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html