projects
/
platform
/
kernel
/
linux-rpi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e8782e2
)
9p: remove unused variable in p9_fd_create()
author
Fabian Frederick
<fabf@skynet.be>
Thu, 23 Oct 2014 16:19:35 +0000
(18:19 +0200)
committer
Eric Van Hensbergen
<ericvh@gmail.com>
Fri, 20 Mar 2015 14:34:41 +0000
(07:34 -0700)
p is initialized but unused.
Signed-off-by: Fabian Frederick <fabf@skynet.be>
Signed-off-by: Dominique Martinet <dominique.martinet@cea.fr>
Signed-off-by: Eric Van Hensbergen <ericvh@gmail.com>
net/9p/trans_fd.c
patch
|
blob
|
history
diff --git
a/net/9p/trans_fd.c
b/net/9p/trans_fd.c
index
80d08f6
..
c73b894
100644
(file)
--- a/
net/9p/trans_fd.c
+++ b/
net/9p/trans_fd.c
@@
-1013,7
+1013,6
@@
p9_fd_create(struct p9_client *client, const char *addr, char *args)
{
int err;
struct p9_fd_opts opts;
- struct p9_trans_fd *p;
parse_opts(args, &opts);
@@
-1026,7
+1025,6
@@
p9_fd_create(struct p9_client *client, const char *addr, char *args)
if (err < 0)
return err;
- p = (struct p9_trans_fd *) client->trans;
p9_conn_create(client);
return 0;