vsock/vmci: make vmci_vsock_transport_cb() static
authorStefano Garzarella <sgarzare@redhat.com>
Fri, 5 Jun 2020 15:12:41 +0000 (17:12 +0200)
committerDavid S. Miller <davem@davemloft.net>
Fri, 5 Jun 2020 20:18:26 +0000 (13:18 -0700)
commitfdb4276aae1100aa13f955eff6c944a8200a15ac
tree6682c4a7569bbe226a5844b0d400cb3ca06adda4
parent90c56b3877995d948dc382fe833a1c5eeaaee2ad
vsock/vmci: make vmci_vsock_transport_cb() static

Fix the following gcc-9.3 warning when building with 'make W=1':
    net/vmw_vsock/vmci_transport.c:2058:6: warning: no previous prototype
        for ‘vmci_vsock_transport_cb’ [-Wmissing-prototypes]
     2058 | void vmci_vsock_transport_cb(bool is_host)
          |      ^~~~~~~~~~~~~~~~~~~~~~~

Fixes: b1bba80a4376 ("vsock/vmci: register vmci_transport only when VMCI guest/host are active")
Reported-by: kernel test robot <lkp@intel.com>
Signed-off-by: Stefano Garzarella <sgarzare@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/vmw_vsock/vmci_transport.c