diff options
author | Sergey Senozhatsky <sergey.senozhatsky@gmail.com> | 2013-06-22 03:21:18 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-06-24 15:59:03 -0700 |
commit | 9b3bb7abcdf2df0f1b2657e6cbc9d06bc2b3b36f (patch) | |
tree | ed10f3a6d7e26d16bc480416ac5869e3b6ed1237 /drivers/staging/zram/Makefile | |
parent | 95cd1860b8cddb69db91908b548294b567937551 (diff) |
zram: remove zram_sysfs file (v2)
Move zram sysfs code to zram drv and remove zram_sysfs.c
file. This gives ability to make static a number of previously
exported zram functions, used from zram sysfs, e.g. internal zram
zram_meta_alloc/free(). We also can drop zram_drv wrapper
functions, used from zram sysfs:
e.g. zram_reset_device()/__zram_reset_device() pair.
v2: as suggested by Greg K-H, move MODULE description to the
bottom of the file.
Signed-off-by: Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/zram/Makefile')
-rw-r--r-- | drivers/staging/zram/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/zram/Makefile b/drivers/staging/zram/Makefile index 7f4a3019e9c4..cb0f9ced6a93 100644 --- a/drivers/staging/zram/Makefile +++ b/drivers/staging/zram/Makefile @@ -1,3 +1,3 @@ -zram-y := zram_drv.o zram_sysfs.o +zram-y := zram_drv.o obj-$(CONFIG_ZRAM) += zram.o |