From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andreas Oberritter Subject: Re: [PATCHv2 1/3] phy: Add exynos-simple-phy driver Date: Wed, 09 Apr 2014 13:47:09 +0200 Message-ID: <5345333D.4080505@saftware.de> References: <1396967856-27470-1-git-send-email-t.stanislaws@samsung.com> <1396967856-27470-2-git-send-email-t.stanislaws@samsung.com> <534506B1.4040908@samsung.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <534506B1.4040908@samsung.com> Sender: linux-samsung-soc-owner@vger.kernel.org To: Andrzej Hajda , Tomasz Stanislawski , linux-kernel@vger.kernel.org, linux-samsung-soc@vger.kernel.org, devicetree@vger.kernel.org, linux-media@vger.kernel.org, dri-devel@lists.freedesktop.org Cc: kgene.kim@samsung.com, kishon@ti.com, kyungmin.park@samsung.com, robh+dt@kernel.org, grant.likely@linaro.org, sylvester.nawrocki@gmail.com, rahul.sharma@samsung.com List-Id: devicetree@vger.kernel.org Hello Andrzej, On 09.04.2014 10:37, Andrzej Hajda wrote: >> +static int exynos_phy_probe(struct platform_device *pdev) >> +{ >> + const struct of_device_id *of_id = of_match_device( >> + of_match_ptr(exynos_phy_of_match), &pdev->dev); >> + const u32 *offsets = of_id->data; >> + int count; >> + struct device *dev = &pdev->dev; >> + struct phy **phys; >> + struct resource *res; >> + void __iomem *regs; >> + int i; >> + struct phy_provider *phy_provider; >> + >> + /* count number of phys to create */ >> + for (count = 0; offsets[count] != ~0; ++count) >> + ; > > count = ARRAY_SIZE(offsets) - 1; u32 *offsets is not an array. Regards, Andreas