Bluetooth: hidp: move hidp_schedule() to core.c
authorDavid Herrmann <[email protected]>
Sat, 6 Apr 2013 18:28:43 +0000 (20:28 +0200)
committerGustavo Padovan <[email protected]>
Wed, 17 Apr 2013 05:56:59 +0000 (02:56 -0300)
There is no reason to keep this helper in the header file. No other file
depends on it so move it into hidp/core.c where it belongs.

Signed-off-by: David Herrmann <[email protected]>
Acked-by: Marcel Holtmann <[email protected]>
Signed-off-by: Gustavo Padovan <[email protected]>
net/bluetooth/hidp/core.c
net/bluetooth/hidp/hidp.h

index e01a9246c14dd94b61c4f691ba8d6f0ac7f20c57..cef1021d540391c1960a35468a99281fc366f69c 100644 (file)
@@ -59,6 +59,15 @@ static unsigned char hidp_keycode[256] = {
 
 static unsigned char hidp_mkeyspat[] = { 0x01, 0x01, 0x01, 0x01, 0x01, 0x01 };
 
+static inline void hidp_schedule(struct hidp_session *session)
+{
+       struct sock *ctrl_sk = session->ctrl_sock->sk;
+       struct sock *intr_sk = session->intr_sock->sk;
+
+       wake_up_interruptible(sk_sleep(ctrl_sk));
+       wake_up_interruptible(sk_sleep(intr_sk));
+}
+
 static struct hidp_session *__hidp_get_session(bdaddr_t *bdaddr)
 {
        struct hidp_session *session;
index 57a6191674fdeee7c5f887223592ddfedc1c06d5..c844420617932ae0df5e47b542a7c1fe6a537dbc 100644 (file)
@@ -174,15 +174,6 @@ struct hidp_session {
        int waiting_for_startup;
 };
 
-static inline void hidp_schedule(struct hidp_session *session)
-{
-       struct sock *ctrl_sk = session->ctrl_sock->sk;
-       struct sock *intr_sk = session->intr_sock->sk;
-
-       wake_up_interruptible(sk_sleep(ctrl_sk));
-       wake_up_interruptible(sk_sleep(intr_sk));
-}
-
 /* HIDP init defines */
 extern int __init hidp_init_sockets(void);
 extern void __exit hidp_cleanup_sockets(void);