forked from Minki/linux
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 <johan@hovoldconsulting.com> Signed-off-by: Greg Kroah-Hartman <gregkh@google.com>
This commit is contained in:
parent
dacf3eb7f3
commit
1282317833
@ -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);
|
ida_simple_remove(&hd->cport_id_map, cport_id);
|
||||||
|
|
||||||
trace_gb_hd_release(hd);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void gb_hd_release(struct device *dev)
|
static void gb_hd_release(struct device *dev)
|
||||||
{
|
{
|
||||||
struct gb_host_device *hd = to_gb_host_device(dev);
|
struct gb_host_device *hd = to_gb_host_device(dev);
|
||||||
|
|
||||||
|
trace_gb_hd_release(hd);
|
||||||
|
|
||||||
if (hd->svc)
|
if (hd->svc)
|
||||||
gb_svc_put(hd->svc);
|
gb_svc_put(hd->svc);
|
||||||
ida_simple_remove(&gb_hd_bus_id_map, hd->bus_id);
|
ida_simple_remove(&gb_hd_bus_id_map, hd->bus_id);
|
||||||
|
Loading…
Reference in New Issue
Block a user