Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Michael Ernst | c05ffc4 | 2008-01-26 14:10:55 +0100 | [diff] [blame] | 2 | * SCLP control programm identification |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * |
Michael Ernst | c05ffc4 | 2008-01-26 14:10:55 +0100 | [diff] [blame] | 4 | * Copyright IBM Corp. 2001, 2007 |
| 5 | * Author(s): Martin Peschke <mpeschke@de.ibm.com> |
| 6 | * Michael Ernst <mernst@de.ibm.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | */ |
| 8 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | #include <linux/kmod.h> |
| 10 | #include <linux/module.h> |
| 11 | #include <linux/moduleparam.h> |
Michael Ernst | c05ffc4 | 2008-01-26 14:10:55 +0100 | [diff] [blame] | 12 | #include <linux/version.h> |
| 13 | #include "sclp_cpi_sys.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | |
Christian Borntraeger | b3c14d0 | 2006-12-15 17:18:20 +0100 | [diff] [blame] | 15 | MODULE_LICENSE("GPL"); |
Michael Ernst | c05ffc4 | 2008-01-26 14:10:55 +0100 | [diff] [blame] | 16 | MODULE_DESCRIPTION("Identify this operating system instance " |
| 17 | "to the System z hardware"); |
| 18 | MODULE_AUTHOR("Martin Peschke <mpeschke@de.ibm.com>, " |
| 19 | "Michael Ernst <mernst@de.ibm.com>"); |
Christian Borntraeger | b3c14d0 | 2006-12-15 17:18:20 +0100 | [diff] [blame] | 20 | |
Michael Ernst | c05ffc4 | 2008-01-26 14:10:55 +0100 | [diff] [blame] | 21 | static char *system_name = ""; |
| 22 | static char *sysplex_name = ""; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | module_param(system_name, charp, 0); |
| 25 | MODULE_PARM_DESC(system_name, "e.g. hostname - max. 8 characters"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | module_param(sysplex_name, charp, 0); |
| 27 | MODULE_PARM_DESC(sysplex_name, "if applicable - max. 8 characters"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | |
Michael Ernst | c05ffc4 | 2008-01-26 14:10:55 +0100 | [diff] [blame] | 29 | static int __init cpi_module_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | { |
Michael Ernst | c05ffc4 | 2008-01-26 14:10:55 +0100 | [diff] [blame] | 31 | return sclp_cpi_set_data(system_name, sysplex_name, "LINUX", |
| 32 | LINUX_VERSION_CODE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | } |
| 34 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | static void __exit cpi_module_exit(void) |
| 36 | { |
| 37 | } |
| 38 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | module_init(cpi_module_init); |
| 40 | module_exit(cpi_module_exit); |