diff options
Diffstat (limited to 'drivers/s390/net/lcs.c')
| -rw-r--r-- | drivers/s390/net/lcs.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/drivers/s390/net/lcs.c b/drivers/s390/net/lcs.c index cccfed248e70..46f34ba93ac5 100644 --- a/drivers/s390/net/lcs.c +++ b/drivers/s390/net/lcs.c | |||
| @@ -11,7 +11,7 @@ | |||
| 11 | * Frank Pavlic (pavlic@de.ibm.com) and | 11 | * Frank Pavlic (pavlic@de.ibm.com) and |
| 12 | * Martin Schwidefsky <schwidefsky@de.ibm.com> | 12 | * Martin Schwidefsky <schwidefsky@de.ibm.com> |
| 13 | * | 13 | * |
| 14 | * $Revision: 1.98 $ $Date: 2005/04/18 13:41:29 $ | 14 | * $Revision: 1.99 $ $Date: 2005/05/11 08:10:17 $ |
| 15 | * | 15 | * |
| 16 | * This program is free software; you can redistribute it and/or modify | 16 | * This program is free software; you can redistribute it and/or modify |
| 17 | * it under the terms of the GNU General Public License as published by | 17 | * it under the terms of the GNU General Public License as published by |
| @@ -59,7 +59,7 @@ | |||
| 59 | /** | 59 | /** |
| 60 | * initialization string for output | 60 | * initialization string for output |
| 61 | */ | 61 | */ |
| 62 | #define VERSION_LCS_C "$Revision: 1.98 $" | 62 | #define VERSION_LCS_C "$Revision: 1.99 $" |
| 63 | 63 | ||
| 64 | static char version[] __initdata = "LCS driver ("VERSION_LCS_C "/" VERSION_LCS_H ")"; | 64 | static char version[] __initdata = "LCS driver ("VERSION_LCS_C "/" VERSION_LCS_H ")"; |
| 65 | static char debug_buffer[255]; | 65 | static char debug_buffer[255]; |
| @@ -93,8 +93,8 @@ lcs_unregister_debug_facility(void) | |||
| 93 | static int | 93 | static int |
| 94 | lcs_register_debug_facility(void) | 94 | lcs_register_debug_facility(void) |
| 95 | { | 95 | { |
| 96 | lcs_dbf_setup = debug_register("lcs_setup", 1, 1, 8); | 96 | lcs_dbf_setup = debug_register("lcs_setup", 2, 1, 8); |
| 97 | lcs_dbf_trace = debug_register("lcs_trace", 1, 2, 8); | 97 | lcs_dbf_trace = debug_register("lcs_trace", 2, 2, 8); |
| 98 | if (lcs_dbf_setup == NULL || lcs_dbf_trace == NULL) { | 98 | if (lcs_dbf_setup == NULL || lcs_dbf_trace == NULL) { |
| 99 | PRINT_ERR("Not enough memory for debug facility.\n"); | 99 | PRINT_ERR("Not enough memory for debug facility.\n"); |
| 100 | lcs_unregister_debug_facility(); | 100 | lcs_unregister_debug_facility(); |
| @@ -1984,7 +1984,7 @@ lcs_open_device(struct net_device *dev) | |||
| 1984 | * show function for portno called by cat or similar things | 1984 | * show function for portno called by cat or similar things |
| 1985 | */ | 1985 | */ |
| 1986 | static ssize_t | 1986 | static ssize_t |
| 1987 | lcs_portno_show (struct device *dev, char *buf) | 1987 | lcs_portno_show (struct device *dev, struct device_attribute *attr, char *buf) |
| 1988 | { | 1988 | { |
| 1989 | struct lcs_card *card; | 1989 | struct lcs_card *card; |
| 1990 | 1990 | ||
| @@ -2000,7 +2000,7 @@ lcs_portno_show (struct device *dev, char *buf) | |||
| 2000 | * store the value which is piped to file portno | 2000 | * store the value which is piped to file portno |
| 2001 | */ | 2001 | */ |
| 2002 | static ssize_t | 2002 | static ssize_t |
| 2003 | lcs_portno_store (struct device *dev, const char *buf, size_t count) | 2003 | lcs_portno_store (struct device *dev, struct device_attribute *attr, const char *buf, size_t count) |
| 2004 | { | 2004 | { |
| 2005 | struct lcs_card *card; | 2005 | struct lcs_card *card; |
| 2006 | int value; | 2006 | int value; |
| @@ -2021,7 +2021,7 @@ lcs_portno_store (struct device *dev, const char *buf, size_t count) | |||
| 2021 | static DEVICE_ATTR(portno, 0644, lcs_portno_show, lcs_portno_store); | 2021 | static DEVICE_ATTR(portno, 0644, lcs_portno_show, lcs_portno_store); |
| 2022 | 2022 | ||
| 2023 | static ssize_t | 2023 | static ssize_t |
| 2024 | lcs_type_show(struct device *dev, char *buf) | 2024 | lcs_type_show(struct device *dev, struct device_attribute *attr, char *buf) |
| 2025 | { | 2025 | { |
| 2026 | struct ccwgroup_device *cgdev; | 2026 | struct ccwgroup_device *cgdev; |
| 2027 | 2027 | ||
| @@ -2035,7 +2035,7 @@ lcs_type_show(struct device *dev, char *buf) | |||
| 2035 | static DEVICE_ATTR(type, 0444, lcs_type_show, NULL); | 2035 | static DEVICE_ATTR(type, 0444, lcs_type_show, NULL); |
| 2036 | 2036 | ||
| 2037 | static ssize_t | 2037 | static ssize_t |
| 2038 | lcs_timeout_show(struct device *dev, char *buf) | 2038 | lcs_timeout_show(struct device *dev, struct device_attribute *attr, char *buf) |
| 2039 | { | 2039 | { |
| 2040 | struct lcs_card *card; | 2040 | struct lcs_card *card; |
| 2041 | 2041 | ||
| @@ -2045,7 +2045,7 @@ lcs_timeout_show(struct device *dev, char *buf) | |||
| 2045 | } | 2045 | } |
| 2046 | 2046 | ||
| 2047 | static ssize_t | 2047 | static ssize_t |
| 2048 | lcs_timeout_store (struct device *dev, const char *buf, size_t count) | 2048 | lcs_timeout_store (struct device *dev, struct device_attribute *attr, const char *buf, size_t count) |
| 2049 | { | 2049 | { |
| 2050 | struct lcs_card *card; | 2050 | struct lcs_card *card; |
| 2051 | int value; | 2051 | int value; |
