The patch titled drivers/gpu/drm/i915/intel_bios.c: fix continuation line formats has been removed from the -mm tree. Its filename was drivers-gpu-drm-i915-intel_biosc-fix-continuation-line-formats.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/gpu/drm/i915/intel_bios.c: fix continuation line formats From: Joe Perches <joe@xxxxxxxxxxx> String constants that are continued on subsequent lines with \ will cause spurious whitespace in the resulting output. Signed-off-by: Joe Perches <joe@xxxxxxxxxxx> Cc: Dave Airlie <airlied@xxxxxxxx> Cc: Eric Anholt <eric@xxxxxxxxxx> Cc: Jesse Barnes <jbarnes@xxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/gpu/drm/i915/intel_bios.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff -puN drivers/gpu/drm/i915/intel_bios.c~drivers-gpu-drm-i915-intel_biosc-fix-continuation-line-formats drivers/gpu/drm/i915/intel_bios.c --- a/drivers/gpu/drm/i915/intel_bios.c~drivers-gpu-drm-i915-intel_biosc-fix-continuation-line-formats +++ a/drivers/gpu/drm/i915/intel_bios.c @@ -417,8 +417,7 @@ parse_edp(struct drm_i915_private *dev_p edp = find_section(bdb, BDB_EDP); if (!edp) { if (SUPPORTS_EDP(dev_priv->dev) && dev_priv->edp_support) { - DRM_DEBUG_KMS("No eDP BDB found but eDP panel supported,\ - assume 18bpp panel color depth.\n"); + DRM_DEBUG_KMS("No eDP BDB found but eDP panel supported, assume 18bpp panel color depth.\n"); dev_priv->edp_bpp = 18; } return; _ Patches currently in -mm which might be from joe@xxxxxxxxxxx are get_maintainer-repair-stdin-usage.patch maintainers-use-tab-not-spaces-for-delimiter.patch linux-next.patch kernelh-fix-wrong-usage-of-__ratelimit.patch drivers-scsi-correct-the-size-argument-to-kmalloc.patch drivers-scsi-qla2xxx-qla_osc-fix-continuation-line-formats.patch drivers-scsi-chc-dont-use-vprintk-as-macro.patch vsprintfc-use-noinline_for_stack.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