From: Viresh Kumar Date: Mon, 8 Dec 2014 08:16:18 +0000 (+0530) Subject: PM / OPP: remove double calls to find_device_opp() X-Git-Tag: omap-for-v3.19/fixes-rc1~33^2~4^2^2 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2a6127d037de96e8add0b09e0200b331a4db54be;p=pandora-kernel.git PM / OPP: remove double calls to find_device_opp() By mistake we called find_device_opp() twice in of_free_opp_table(), fix it. Generated diff doesn't show the problem well and so here is the code snippet: void of_free_opp_table(struct device *dev) { struct device_opp *dev_opp = find_device_opp(dev); struct dev_pm_opp *opp, *tmp; /* Check for existing list for 'dev' */ dev_opp = find_device_opp(dev); ... } Signed-off-by: Viresh Kumar Signed-off-by: Rafael J. Wysocki --- Reading git-diff-tree failed