Message ID | 1407452515-2390-3-git-send-email-ttynkkynen@nvidia.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On 08/07/2014 05:01 PM, Tuomas Tynkkynen wrote: > Use the new helper function, also fixing a device_node refcount leak. Acked-by: Stephen Warren <swarren@nvidia.com> I assume this will go through some common branch in arm-soc so others can build on it?
On Fri, Aug 08, 2014 at 02:01:54AM +0300, Tuomas Tynkkynen wrote: > Use the new helper function, also fixing a device_node refcount leak. > > Signed-off-by: Tuomas Tynkkynen <ttynkkynen@nvidia.com> > --- > drivers/soc/tegra/common.c | 8 +------- > 1 file changed, 1 insertion(+), 7 deletions(-) Reviewed-by: Thierry Reding <treding@nvidia.com> Acked-by: Thierry Reding <treding@nvidia.com>
diff --git a/drivers/soc/tegra/common.c b/drivers/soc/tegra/common.c index a71cb74..f6571f5 100644 --- a/drivers/soc/tegra/common.c +++ b/drivers/soc/tegra/common.c @@ -20,11 +20,5 @@ static const struct of_device_id tegra_machine_match[] = { bool soc_is_tegra(void) { - struct device_node *root; - - root = of_find_node_by_path("/"); - if (!root) - return false; - - return of_match_node(tegra_machine_match, root) != NULL; + return of_match_machine(tegra_machine_match) != NULL; }
Use the new helper function, also fixing a device_node refcount leak. Signed-off-by: Tuomas Tynkkynen <ttynkkynen@nvidia.com> --- drivers/soc/tegra/common.c | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-)