Am Donnerstag, den 16.06.2016, 06:19 +1000 schrieb Dave Airlie: > On 13 June 2016 at 19:44, Philipp Zabel <p.zabel at pengutronix.de> wrote: > > Hi Dave, > > > > please consider merging this tag, which contains the v16 MT8173 HDMI > > patches I sent on 2016-05-26, rebased onto v4.7-rc2. There have been no > > further comments. > > arm32 build > DTC drivers/gpu/drm/tilcdc/tilcdc_slave_compat.dtb > /home/airlied/devel/kernel/drm-next/drivers/gpu/drm/mediatek/mtk_hdmi_ddc.c: > In function âmtk_hdmi_ddc_probeâ: > /home/airlied/devel/kernel/drm-next/drivers/gpu/drm/mediatek/mtk_hdmi_ddc.c:322:111: > warning: format â%llxâ expects argument of type âlong long unsigned > intâ, but argument 4 has type âresource_size_t {aka unsigned int}â > [-Wformat=] > /home/airlied/devel/kernel/drm-next/drivers/gpu/drm/mediatek/mtk_hdmi_ddc.c:322:111: > warning: format â%llxâ expects argument of type âlong long unsigned > intâ, but argument 5 has type âresource_size_t {aka unsigned int}â > [-Wformat=] > > Please fix that and resend. > Dave.
I'll fix it up as follows and resend: ----------8<---------- diff --git a/drivers/gpu/drm/mediatek/mtk_hdmi_ddc.c b/drivers/gpu/drm/mediatek/mtk_hdmi_ddc.c index c24bbc4..33c9e1b 100644 --- a/drivers/gpu/drm/mediatek/mtk_hdmi_ddc.c +++ b/drivers/gpu/drm/mediatek/mtk_hdmi_ddc.c @@ -319,8 +319,8 @@ static int mtk_hdmi_ddc_probe(struct platform_device *pdev) dev_dbg(dev, "ddc->adap: %p\n", &ddc->adap); dev_dbg(dev, "ddc->clk: %p\n", ddc->clk); - dev_dbg(dev, "physical adr: 0x%llx, end: 0x%llx\n", mem->start, - mem->end); + dev_dbg(dev, "physical adr: %pa, end: %pa\n", &mem->start, + &mem->end); return 0; ---------->8---------- regards Philipp