|
@@ -715,7 +715,7 @@ static int open_port(struct inode *inode, struct file *filp)
|
|
|
#define open_mem open_port
|
|
|
#define open_kmem open_mem
|
|
|
|
|
|
-static const struct file_operations mem_fops = {
|
|
|
+static const struct file_operations __maybe_unused mem_fops = {
|
|
|
.llseek = memory_lseek,
|
|
|
.read = read_mem,
|
|
|
.write = write_mem,
|
|
@@ -785,7 +785,9 @@ static const struct memdev {
|
|
|
const struct file_operations *fops;
|
|
|
struct backing_dev_info *dev_info;
|
|
|
} devlist[] = {
|
|
|
+#ifdef CONFIG_DEVMEM
|
|
|
[1] = { "mem", 0, &mem_fops, &directly_mappable_cdev_bdi },
|
|
|
+#endif
|
|
|
#ifdef CONFIG_DEVKMEM
|
|
|
[2] = { "kmem", 0, &kmem_fops, &directly_mappable_cdev_bdi },
|
|
|
#endif
|