Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 76e47c30 authored by Joe Perches's avatar Joe Perches Committed by Eric Anholt
Browse files

drivers/gpu/drm/i915/intel_bios.c: fix continuation line formats



String constants that are continued on subsequent lines with \ will cause
spurious whitespace in the resulting output.

Signed-off-by: default avatarJoe Perches <joe@perches.com>
Cc: Dave Airlie <airlied@linux.ie>
Cc: Eric Anholt <eric@anholt.net>
Cc: Jesse Barnes <jbarnes@virtuousgeek.org>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
[anholt: whacked it to wrap to 80 columns instead]
Signed-off-by: default avatarEric Anholt <eric@anholt.net>
parent 71cf39b1
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -417,8 +417,9 @@ parse_edp(struct drm_i915_private *dev_priv, struct bdb_header *bdb)
	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;