Merge drm/drm-fixes into drm-misc-fixes
We haven't backmerged for a while, let's start the -rc period by pulling rc1. Signed-off-by: Maxime Ripard <mripard@kernel.org>
This commit is contained in:
@@ -4609,11 +4609,10 @@ static int dispc_errata_i734_wa_init(struct dispc_device *dispc)
|
||||
i734_buf.size = i734.ovli.width * i734.ovli.height *
|
||||
color_mode_to_bpp(i734.ovli.fourcc) / 8;
|
||||
|
||||
i734_buf.vaddr = dma_alloc_writecombine(&dispc->pdev->dev,
|
||||
i734_buf.size, &i734_buf.paddr,
|
||||
GFP_KERNEL);
|
||||
i734_buf.vaddr = dma_alloc_wc(&dispc->pdev->dev, i734_buf.size,
|
||||
&i734_buf.paddr, GFP_KERNEL);
|
||||
if (!i734_buf.vaddr) {
|
||||
dev_err(&dispc->pdev->dev, "%s: dma_alloc_writecombine failed\n",
|
||||
dev_err(&dispc->pdev->dev, "%s: dma_alloc_wc failed\n",
|
||||
__func__);
|
||||
return -ENOMEM;
|
||||
}
|
||||
@@ -4626,8 +4625,8 @@ static void dispc_errata_i734_wa_fini(struct dispc_device *dispc)
|
||||
if (!dispc->feat->has_gamma_i734_bug)
|
||||
return;
|
||||
|
||||
dma_free_writecombine(&dispc->pdev->dev, i734_buf.size, i734_buf.vaddr,
|
||||
i734_buf.paddr);
|
||||
dma_free_wc(&dispc->pdev->dev, i734_buf.size, i734_buf.vaddr,
|
||||
i734_buf.paddr);
|
||||
}
|
||||
|
||||
static void dispc_errata_i734_wa(struct dispc_device *dispc)
|
||||
|
@@ -923,7 +923,6 @@ dss_debugfs_create_file(struct dss_device *dss, const char *name,
|
||||
void *data)
|
||||
{
|
||||
struct dss_debugfs_entry *entry;
|
||||
struct dentry *d;
|
||||
|
||||
entry = kzalloc(sizeof(*entry), GFP_KERNEL);
|
||||
if (!entry)
|
||||
@@ -931,15 +930,9 @@ dss_debugfs_create_file(struct dss_device *dss, const char *name,
|
||||
|
||||
entry->show_fn = show_fn;
|
||||
entry->data = data;
|
||||
entry->dentry = debugfs_create_file(name, 0444, dss->debugfs.root,
|
||||
entry, &dss_debug_fops);
|
||||
|
||||
d = debugfs_create_file(name, 0444, dss->debugfs.root, entry,
|
||||
&dss_debug_fops);
|
||||
if (IS_ERR(d)) {
|
||||
kfree(entry);
|
||||
return ERR_CAST(d);
|
||||
}
|
||||
|
||||
entry->dentry = d;
|
||||
return entry;
|
||||
}
|
||||
|
||||
|
@@ -176,17 +176,10 @@ static const struct of_device_id omapdss_of_match[] __initconst = {
|
||||
static const struct of_device_id omapdss_of_fixups_whitelist[] __initconst = {
|
||||
{ .compatible = "composite-video-connector" },
|
||||
{ .compatible = "hdmi-connector" },
|
||||
{ .compatible = "lgphilips,lb035q02" },
|
||||
{ .compatible = "nec,nl8048hl11" },
|
||||
{ .compatible = "panel-dsi-cm" },
|
||||
{ .compatible = "sharp,ls037v7dw01" },
|
||||
{ .compatible = "sony,acx565akm" },
|
||||
{ .compatible = "svideo-connector" },
|
||||
{ .compatible = "ti,opa362" },
|
||||
{ .compatible = "ti,tpd12s015" },
|
||||
{ .compatible = "toppoly,td028ttec1" },
|
||||
{ .compatible = "tpo,td028ttec1" },
|
||||
{ .compatible = "tpo,td043mtea1" },
|
||||
{},
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user