On Wed, 2014-09-10 at 20:50 +0300, Boaz Harrosh wrote:
From: Boaz Harrosh <boaz(a)plexistor.com>
This is customary and will become useful soon with udev and events
Signed-off-by: Boaz Harrosh <boaz(a)plexistor.com>
---
drivers/block/pmem.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/drivers/block/pmem.c b/drivers/block/pmem.c
index 4a9d65e..f63cb31 100644
--- a/drivers/block/pmem.c
+++ b/drivers/block/pmem.c
@@ -432,5 +430,6 @@ static void __exit pmem_exit(void)
MODULE_AUTHOR("Ross Zwisler <ross.zwisler(a)linux.intel.com>");
MODULE_LICENSE("GPL");
+MODULE_ALIAS("pmem");
module_init(pmem_init);
module_exit(pmem_exit);
Umm...but the module is *already* named pmem?
Let's not set up an alias that is the same as our real name for code that
isn't written yet?
- Ross