From: Johan Hovold Date: Fri, 27 May 2016 16:23:01 +0000 (+0200) Subject: greybus: hd: fix gb_hd_release tracepoint X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=12823178332216daa76512d256dbdacb5ba76ea7;p=linux-beck.git greybus: hd: fix gb_hd_release tracepoint The recently added gb_hd_release tracepoint was added to the wrong function. Signed-off-by: Johan Hovold Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/greybus/hd.c b/drivers/staging/greybus/hd.c index 52388257d3d2..12ac0b6584d8 100644 --- a/drivers/staging/greybus/hd.c +++ b/drivers/staging/greybus/hd.c @@ -95,14 +95,14 @@ void gb_hd_cport_release(struct gb_host_device *hd, u16 cport_id) } ida_simple_remove(&hd->cport_id_map, cport_id); - - trace_gb_hd_release(hd); } static void gb_hd_release(struct device *dev) { struct gb_host_device *hd = to_gb_host_device(dev); + trace_gb_hd_release(hd); + if (hd->svc) gb_svc_put(hd->svc); ida_simple_remove(&gb_hd_bus_id_map, hd->bus_id);