]>
Commit | Line | Data |
---|---|---|
1da177e4 | 1 | /* |
c05ffc4f ME |
2 | * drivers/s390/char/sclp_cpi.c |
3 | * SCLP control programm identification | |
1da177e4 | 4 | * |
c05ffc4f ME |
5 | * Copyright IBM Corp. 2001, 2007 |
6 | * Author(s): Martin Peschke <[email protected]> | |
7 | * Michael Ernst <[email protected]> | |
1da177e4 LT |
8 | */ |
9 | ||
1da177e4 LT |
10 | #include <linux/kmod.h> |
11 | #include <linux/module.h> | |
12 | #include <linux/moduleparam.h> | |
c05ffc4f ME |
13 | #include <linux/version.h> |
14 | #include "sclp_cpi_sys.h" | |
1da177e4 | 15 | |
b3c14d0b | 16 | MODULE_LICENSE("GPL"); |
c05ffc4f ME |
17 | MODULE_DESCRIPTION("Identify this operating system instance " |
18 | "to the System z hardware"); | |
19 | MODULE_AUTHOR("Martin Peschke <[email protected]>, " | |
20 | "Michael Ernst <[email protected]>"); | |
b3c14d0b | 21 | |
c05ffc4f ME |
22 | static char *system_name = ""; |
23 | static char *sysplex_name = ""; | |
1da177e4 | 24 | |
1da177e4 LT |
25 | module_param(system_name, charp, 0); |
26 | MODULE_PARM_DESC(system_name, "e.g. hostname - max. 8 characters"); | |
1da177e4 LT |
27 | module_param(sysplex_name, charp, 0); |
28 | MODULE_PARM_DESC(sysplex_name, "if applicable - max. 8 characters"); | |
1da177e4 | 29 | |
c05ffc4f | 30 | static int __init cpi_module_init(void) |
1da177e4 | 31 | { |
c05ffc4f ME |
32 | return sclp_cpi_set_data(system_name, sysplex_name, "LINUX", |
33 | LINUX_VERSION_CODE); | |
1da177e4 LT |
34 | } |
35 | ||
1da177e4 LT |
36 | static void __exit cpi_module_exit(void) |
37 | { | |
38 | } | |
39 | ||
1da177e4 LT |
40 | module_init(cpi_module_init); |
41 | module_exit(cpi_module_exit); |