staging: gdm724x: Remove wrapper function
Remove wrapper function that can be replaced by a single line of code. Signed-off-by: Amitoj Kaur Chawla <amitoj1606@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
b4129f2f53
commit
ca3fde19d4
|
@ -555,7 +555,7 @@ int gdm_lte_event_init(void)
|
||||||
void gdm_lte_event_exit(void)
|
void gdm_lte_event_exit(void)
|
||||||
{
|
{
|
||||||
if (lte_event.sock && --lte_event.ref_cnt == 0) {
|
if (lte_event.sock && --lte_event.ref_cnt == 0) {
|
||||||
netlink_exit(lte_event.sock);
|
sock_release(lte_event.sock->sk_socket);
|
||||||
lte_event.sock = NULL;
|
lte_event.sock = NULL;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -107,11 +107,6 @@ struct sock *netlink_init(int unit,
|
||||||
return sock;
|
return sock;
|
||||||
}
|
}
|
||||||
|
|
||||||
void netlink_exit(struct sock *sock)
|
|
||||||
{
|
|
||||||
sock_release(sock->sk_socket);
|
|
||||||
}
|
|
||||||
|
|
||||||
int netlink_send(struct sock *sock, int group, u16 type, void *msg, int len)
|
int netlink_send(struct sock *sock, int group, u16 type, void *msg, int len)
|
||||||
{
|
{
|
||||||
static u32 seq;
|
static u32 seq;
|
||||||
|
|
|
@ -19,7 +19,6 @@
|
||||||
|
|
||||||
struct sock *netlink_init(int unit,
|
struct sock *netlink_init(int unit,
|
||||||
void (*cb)(struct net_device *dev, u16 type, void *msg, int len));
|
void (*cb)(struct net_device *dev, u16 type, void *msg, int len));
|
||||||
void netlink_exit(struct sock *sock);
|
|
||||||
int netlink_send(struct sock *sock, int group, u16 type, void *msg, int len);
|
int netlink_send(struct sock *sock, int group, u16 type, void *msg, int len);
|
||||||
|
|
||||||
#endif /* _NETLINK_K_H_ */
|
#endif /* _NETLINK_K_H_ */
|
||||||
|
|
Loading…
Reference in New Issue