The patch titled intel_agp: cleanup intel private data (update) has been removed from the -mm tree. Its filename was intel_agp-cleanup-intel-private-data-update.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: intel_agp: cleanup intel private data (update) From: Wang Zhenyu <zhenyu.z.wang@xxxxxxxxx> Remove volatile type declare for IO mem variables. A single private gart data is used by all drivers, this makes it clean. Eric Anholt wrote the original patch. Signed-off-by: Wang Zhenyu <zhenyu.z.wang@xxxxxxxxx> Cc: Dave Jones <davej@xxxxxxxxxxxxxxxxx> Cc: Keith Packard <keithp@xxxxxxxxxx> Cc: Eric Anholt <eric@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/char/agp/intel-agp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff -puN drivers/char/agp/intel-agp.c~intel_agp-cleanup-intel-private-data-update drivers/char/agp/intel-agp.c --- a/drivers/char/agp/intel-agp.c~intel_agp-cleanup-intel-private-data-update +++ a/drivers/char/agp/intel-agp.c @@ -95,8 +95,8 @@ static struct gatt_mask intel_i810_masks static struct _intel_private { struct pci_dev *pcidev; /* device one */ - volatile u8 __iomem *registers; - volatile u32 __iomem *gtt; /* I915G */ + u8 __iomem *registers; + u32 __iomem *gtt; /* I915G */ int num_dcache_entries; /* gtt_entries is the number of gtt entries that are already mapped * to stolen memory. Stolen memory is larger than the memory mapped _ Patches currently in -mm which might be from zhenyu.z.wang@xxxxxxxxx are git-agpgart.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