|
@@ -5,12 +5,14 @@
|
|
|
* Author(s): Arnd Bergmann (arndb@de.ibm.com)
|
|
|
* Cornelia Huck (cornelia.huck@de.ibm.com)
|
|
|
* Martin Schwidefsky (schwidefsky@de.ibm.com)
|
|
|
+ *
|
|
|
+ * License: GPL
|
|
|
*/
|
|
|
|
|
|
#define KMSG_COMPONENT "cio"
|
|
|
#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
|
|
|
|
|
|
-#include <linux/module.h>
|
|
|
+#include <linux/export.h>
|
|
|
#include <linux/init.h>
|
|
|
#include <linux/spinlock.h>
|
|
|
#include <linux/errno.h>
|
|
@@ -145,7 +147,6 @@ static struct css_device_id io_subchannel_ids[] = {
|
|
|
{ .match_flags = 0x1, .type = SUBCHANNEL_TYPE_IO, },
|
|
|
{ /* end of list */ },
|
|
|
};
|
|
|
-MODULE_DEVICE_TABLE(css, io_subchannel_ids);
|
|
|
|
|
|
static int io_subchannel_prepare(struct subchannel *sch)
|
|
|
{
|
|
@@ -2150,7 +2151,6 @@ int ccw_device_siosl(struct ccw_device *cdev)
|
|
|
}
|
|
|
EXPORT_SYMBOL_GPL(ccw_device_siosl);
|
|
|
|
|
|
-MODULE_LICENSE("GPL");
|
|
|
EXPORT_SYMBOL(ccw_device_set_online);
|
|
|
EXPORT_SYMBOL(ccw_device_set_offline);
|
|
|
EXPORT_SYMBOL(ccw_driver_register);
|