diff options
author | David Howells <dhowells@redhat.com> | 2017-02-17 18:16:21 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-02-17 15:09:19 -0500 |
commit | 88c4845d7dec835ba7ad1379e30a09658b05495d (patch) | |
tree | 5587e6e2817057f246530c33b138328c39e1ba62 /net/rxrpc | |
parent | b5124720ed2e5b43c851a32e9acc8d29e3e780ae (diff) | |
download | linux-88c4845d7dec835ba7ad1379e30a09658b05495d.tar.gz linux-88c4845d7dec835ba7ad1379e30a09658b05495d.tar.bz2 linux-88c4845d7dec835ba7ad1379e30a09658b05495d.zip |
rxrpc: Change module filename to rxrpc.ko
Change module filename from af-rxrpc.ko to rxrpc.ko so as to be consistent
with the other protocol drivers.
Also adjust the documentation to reflect this.
Further, there is no longer a standalone rxkad module, as it has been
merged into the rxrpc core, so get rid of references to that.
Reported-by: Marc Dionne <marc.dionne@auristor.com>
Signed-off-by: David Howells <dhowells@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/rxrpc')
-rw-r--r-- | net/rxrpc/Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/net/rxrpc/Makefile b/net/rxrpc/Makefile index 8fc6ea347182..b9da4d6b914f 100644 --- a/net/rxrpc/Makefile +++ b/net/rxrpc/Makefile @@ -2,7 +2,9 @@ # Makefile for Linux kernel RxRPC # -af-rxrpc-y := \ +obj-$(CONFIG_AF_RXRPC) += rxrpc.o + +rxrpc-y := \ af_rxrpc.o \ call_accept.o \ call_event.o \ @@ -26,8 +28,6 @@ af-rxrpc-y := \ skbuff.o \ utils.o -af-rxrpc-$(CONFIG_PROC_FS) += proc.o -af-rxrpc-$(CONFIG_RXKAD) += rxkad.o -af-rxrpc-$(CONFIG_SYSCTL) += sysctl.o - -obj-$(CONFIG_AF_RXRPC) += af-rxrpc.o +rxrpc-$(CONFIG_PROC_FS) += proc.o +rxrpc-$(CONFIG_RXKAD) += rxkad.o +rxrpc-$(CONFIG_SYSCTL) += sysctl.o |