drivers: phy: tweaks to phy_create()
authorDan Carpenter <dan.carpenter@oracle.com>
Fri, 6 Dec 2013 12:21:19 +0000 (17:51 +0530)
committerChanho Park <chanho61.park@samsung.com>
Tue, 18 Nov 2014 02:47:45 +0000 (11:47 +0900)
commit46cd6a5f9d0b8aa03a0474d75825d494e6c74b06
tree8ddd580d6878291de0168bcd97b42caeee8dbaba
parentf79356d0c1f3a92b3519e06311b081e7a16bc3f4
drivers: phy: tweaks to phy_create()

If this was called with a NULL "dev" then it lead to a NULL dereference
when we called dev_WARN().  I have changed it to WARN_ON() so that we
get a stack dump and can fix the caller.

The rest of this patch is just cleanup like returning directly instead
of having do-nothing gotos.  Using descriptive labels instead of
GW-BASIC style "err0" and "err1".  I also flipped the order of
put_device() and ida_remove() so they are a mirror reflection of the
order they were allocated.

Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
[backport from upstream commit 52797d293287f5a98bd686616527b102b077ac39]
Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com>
Change-Id: I695ba238d040b484d1be1f10f7752a7dac164aab
drivers/phy/phy-core.c