Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1628060
| From | Chen-Yu Tsai <wens@csie.org> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH v2 3/9] drm/sun4i: backend: Drop trailing 0 from backend in error message |
| Date | 2017-04-21 10:50 +0200 |
| Message-ID | <tyCql-3El-15@gated-at.bofh.it> (permalink) |
| References | <tyCgF-3B2-1@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
Now that we support multiple instances of backends, the trailing 0
implying only one backend no longer makes sense.
Signed-off-by: Chen-Yu Tsai <wens@csie.org>
---
drivers/gpu/drm/sun4i/sun4i_backend.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/sun4i/sun4i_backend.c b/drivers/gpu/drm/sun4i/sun4i_backend.c
index 95a77c6a9161..e17e20036aa3 100644
--- a/drivers/gpu/drm/sun4i/sun4i_backend.c
+++ b/drivers/gpu/drm/sun4i/sun4i_backend.c
@@ -320,7 +320,7 @@ static int sun4i_backend_bind(struct device *dev, struct device *master,
backend->regs = devm_regmap_init_mmio(dev, regs,
&sun4i_backend_regmap_config);
if (IS_ERR(backend->regs)) {
- dev_err(dev, "Couldn't create the backend0 regmap\n");
+ dev_err(dev, "Couldn't create the backend regmap\n");
return PTR_ERR(backend->regs);
}
--
2.11.0
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[PATCH v2 0/9] drm/sun4i: Support multiple display pipelines Chen-Yu Tsai <wens@csie.org> - 2017-04-21 10:40 +0200 [PATCH v2 1/9] dt-bindings: display: sun4i: Add component endpoint ID numbering scheme Chen-Yu Tsai <wens@csie.org> - 2017-04-21 10:40 +0200 [PATCH v2 9/9] ARM: dts: sun6i: Enable tcon0 by default Chen-Yu Tsai <wens@csie.org> - 2017-04-21 10:40 +0200 [PATCH v2 7/9] drm/sun4i: tcon: Copy ID from associated backend Chen-Yu Tsai <wens@csie.org> - 2017-04-21 10:40 +0200 [PATCH v2 5/9] drm/sun4i: backend: Save pointer to device tree node Chen-Yu Tsai <wens@csie.org> - 2017-04-21 10:50 +0200 [PATCH v2 4/9] drm/sun4i: backend: Fetch backend ID from device tree Chen-Yu Tsai <wens@csie.org> - 2017-04-21 10:50 +0200 [PATCH v2 3/9] drm/sun4i: backend: Drop trailing 0 from backend in error message Chen-Yu Tsai <wens@csie.org> - 2017-04-21 10:50 +0200 [PATCH v2 8/9] ARM: dts: sun6i: Add second display pipeline device nodes Chen-Yu Tsai <wens@csie.org> - 2017-04-21 10:50 +0200 [PATCH v2 6/9] drm/sun4i: tcon: Find matching display backend by device node matching Chen-Yu Tsai <wens@csie.org> - 2017-04-21 10:50 +0200 [PATCH v2 2/9] drm/sun4i: Use lists to track registered display backends and TCONs Chen-Yu Tsai <wens@csie.org> - 2017-04-21 10:50 +0200 Re: [PATCH v2 0/9] drm/sun4i: Support multiple display pipelines Maxime Ripard <maxime.ripard@free-electrons.com> - 2017-04-24 08:00 +0200
csiph-web