Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

Merge tag 'drm/tegra/for-4.16-fixes' of git://anongit.freedesktop.org/tegra/linux into drm-fixes

drm/tegra: Fixes for v4.16

This contains two small fixes, one which fixes a typo that causes a
crash with the new framebuffer modifier query support and another that
fixes a build warning.

* tag 'drm/tegra/for-4.16-fixes' of git://anongit.freedesktop.org/tegra/linux:
drm/tegra: dc: Using NULL instead of plain integer
drm/tegra: dc: Use correct format array for Tegra124

+3 -3
+3 -3
drivers/gpu/drm/tegra/dc.c
··· 2009 2009 .coupled_pm = false, 2010 2010 .has_nvdisplay = false, 2011 2011 .num_primary_formats = ARRAY_SIZE(tegra124_primary_formats), 2012 - .primary_formats = tegra114_primary_formats, 2012 + .primary_formats = tegra124_primary_formats, 2013 2013 .num_overlay_formats = ARRAY_SIZE(tegra124_overlay_formats), 2014 - .overlay_formats = tegra114_overlay_formats, 2014 + .overlay_formats = tegra124_overlay_formats, 2015 2015 }; 2016 2016 2017 2017 static const struct tegra_dc_soc_info tegra210_dc_soc_info = { ··· 2160 2160 struct device_link *link; 2161 2161 struct device *partner; 2162 2162 2163 - partner = driver_find_device(dc->dev->driver, NULL, 0, 2163 + partner = driver_find_device(dc->dev->driver, NULL, NULL, 2164 2164 tegra_dc_match_by_pipe); 2165 2165 if (!partner) 2166 2166 return -EPROBE_DEFER;