projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b807aa7
)
greybus: connection: remove WARN_ON from destroy
author
Johan Hovold
<johan@hovoldconsulting.com>
Tue, 19 Jan 2016 11:51:22 +0000
(12:51 +0100)
committer
Greg Kroah-Hartman
<gregkh@google.com>
Tue, 19 Jan 2016 20:17:13 +0000
(12:17 -0800)
Remove WARN_ON from connection destroy testing for a NULL-connection
when destroying a connection.
This will allow for simpler driver code when releasing driver-managed
connections.
Reviewed-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Johan Hovold <johan@hovoldconsulting.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@google.com>
drivers/staging/greybus/connection.c
patch
|
blob
|
history
diff --git
a/drivers/staging/greybus/connection.c
b/drivers/staging/greybus/connection.c
index ebd038ea6e8a9692c0a934b687b91d55f11fb08e..d1508e21b37832a1995f9e6e367ae32d43d804fd 100644
(file)
--- a/
drivers/staging/greybus/connection.c
+++ b/
drivers/staging/greybus/connection.c
@@
-507,7
+507,7
@@
void gb_connection_destroy(struct gb_connection *connection)
{
struct ida *id_map;
- if (
WARN_ON(!connection)
)
+ if (
!connection
)
return;
spin_lock_irq(&gb_connections_lock);