diff options
Diffstat (limited to 'drivers/s390/net/claw.c')
| -rw-r--r-- | drivers/s390/net/claw.c | 44 |
1 files changed, 22 insertions, 22 deletions
diff --git a/drivers/s390/net/claw.c b/drivers/s390/net/claw.c index 06804d39a9c6..60440dbe3a27 100644 --- a/drivers/s390/net/claw.c +++ b/drivers/s390/net/claw.c | |||
| @@ -146,8 +146,8 @@ claw_unregister_debug_facility(void) | |||
| 146 | static int | 146 | static int |
| 147 | claw_register_debug_facility(void) | 147 | claw_register_debug_facility(void) |
| 148 | { | 148 | { |
| 149 | claw_dbf_setup = debug_register("claw_setup", 1, 1, 8); | 149 | claw_dbf_setup = debug_register("claw_setup", 2, 1, 8); |
| 150 | claw_dbf_trace = debug_register("claw_trace", 1, 2, 8); | 150 | claw_dbf_trace = debug_register("claw_trace", 2, 2, 8); |
| 151 | if (claw_dbf_setup == NULL || claw_dbf_trace == NULL) { | 151 | if (claw_dbf_setup == NULL || claw_dbf_trace == NULL) { |
| 152 | printk(KERN_WARNING "Not enough memory for debug facility.\n"); | 152 | printk(KERN_WARNING "Not enough memory for debug facility.\n"); |
| 153 | claw_unregister_debug_facility(); | 153 | claw_unregister_debug_facility(); |
| @@ -241,20 +241,20 @@ static struct sk_buff *claw_pack_skb(struct claw_privbk *privptr); | |||
| 241 | static void dumpit (char *buf, int len); | 241 | static void dumpit (char *buf, int len); |
| 242 | #endif | 242 | #endif |
| 243 | /* sysfs Functions */ | 243 | /* sysfs Functions */ |
| 244 | static ssize_t claw_hname_show(struct device *dev, char *buf); | 244 | static ssize_t claw_hname_show(struct device *dev, struct device_attribute *attr, char *buf); |
| 245 | static ssize_t claw_hname_write(struct device *dev, | 245 | static ssize_t claw_hname_write(struct device *dev, struct device_attribute *attr, |
| 246 | const char *buf, size_t count); | 246 | const char *buf, size_t count); |
| 247 | static ssize_t claw_adname_show(struct device *dev, char *buf); | 247 | static ssize_t claw_adname_show(struct device *dev, struct device_attribute *attr, char *buf); |
| 248 | static ssize_t claw_adname_write(struct device *dev, | 248 | static ssize_t claw_adname_write(struct device *dev, struct device_attribute *attr, |
| 249 | const char *buf, size_t count); | 249 | const char *buf, size_t count); |
| 250 | static ssize_t claw_apname_show(struct device *dev, char *buf); | 250 | static ssize_t claw_apname_show(struct device *dev, struct device_attribute *attr, char *buf); |
| 251 | static ssize_t claw_apname_write(struct device *dev, | 251 | static ssize_t claw_apname_write(struct device *dev, struct device_attribute *attr, |
| 252 | const char *buf, size_t count); | 252 | const char *buf, size_t count); |
| 253 | static ssize_t claw_wbuff_show(struct device *dev, char *buf); | 253 | static ssize_t claw_wbuff_show(struct device *dev, struct device_attribute *attr, char *buf); |
| 254 | static ssize_t claw_wbuff_write(struct device *dev, | 254 | static ssize_t claw_wbuff_write(struct device *dev, struct device_attribute *attr, |
| 255 | const char *buf, size_t count); | 255 | const char *buf, size_t count); |
| 256 | static ssize_t claw_rbuff_show(struct device *dev, char *buf); | 256 | static ssize_t claw_rbuff_show(struct device *dev, struct device_attribute *attr, char *buf); |
| 257 | static ssize_t claw_rbuff_write(struct device *dev, | 257 | static ssize_t claw_rbuff_write(struct device *dev, struct device_attribute *attr, |
| 258 | const char *buf, size_t count); | 258 | const char *buf, size_t count); |
| 259 | static int claw_add_files(struct device *dev); | 259 | static int claw_add_files(struct device *dev); |
| 260 | static void claw_remove_files(struct device *dev); | 260 | static void claw_remove_files(struct device *dev); |
| @@ -4149,7 +4149,7 @@ claw_remove_device(struct ccwgroup_device *cgdev) | |||
| 4149 | * sysfs attributes | 4149 | * sysfs attributes |
| 4150 | */ | 4150 | */ |
| 4151 | static ssize_t | 4151 | static ssize_t |
| 4152 | claw_hname_show(struct device *dev, char *buf) | 4152 | claw_hname_show(struct device *dev, struct device_attribute *attr, char *buf) |
| 4153 | { | 4153 | { |
| 4154 | struct claw_privbk *priv; | 4154 | struct claw_privbk *priv; |
| 4155 | struct claw_env * p_env; | 4155 | struct claw_env * p_env; |
| @@ -4162,7 +4162,7 @@ claw_hname_show(struct device *dev, char *buf) | |||
| 4162 | } | 4162 | } |
| 4163 | 4163 | ||
| 4164 | static ssize_t | 4164 | static ssize_t |
| 4165 | claw_hname_write(struct device *dev, const char *buf, size_t count) | 4165 | claw_hname_write(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) |
| 4166 | { | 4166 | { |
| 4167 | struct claw_privbk *priv; | 4167 | struct claw_privbk *priv; |
| 4168 | struct claw_env * p_env; | 4168 | struct claw_env * p_env; |
| @@ -4186,7 +4186,7 @@ claw_hname_write(struct device *dev, const char *buf, size_t count) | |||
| 4186 | static DEVICE_ATTR(host_name, 0644, claw_hname_show, claw_hname_write); | 4186 | static DEVICE_ATTR(host_name, 0644, claw_hname_show, claw_hname_write); |
| 4187 | 4187 | ||
| 4188 | static ssize_t | 4188 | static ssize_t |
| 4189 | claw_adname_show(struct device *dev, char *buf) | 4189 | claw_adname_show(struct device *dev, struct device_attribute *attr, char *buf) |
| 4190 | { | 4190 | { |
| 4191 | struct claw_privbk *priv; | 4191 | struct claw_privbk *priv; |
| 4192 | struct claw_env * p_env; | 4192 | struct claw_env * p_env; |
| @@ -4199,7 +4199,7 @@ claw_adname_show(struct device *dev, char *buf) | |||
| 4199 | } | 4199 | } |
| 4200 | 4200 | ||
| 4201 | static ssize_t | 4201 | static ssize_t |
| 4202 | claw_adname_write(struct device *dev, const char *buf, size_t count) | 4202 | claw_adname_write(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) |
| 4203 | { | 4203 | { |
| 4204 | struct claw_privbk *priv; | 4204 | struct claw_privbk *priv; |
| 4205 | struct claw_env * p_env; | 4205 | struct claw_env * p_env; |
| @@ -4223,7 +4223,7 @@ claw_adname_write(struct device *dev, const char *buf, size_t count) | |||
| 4223 | static DEVICE_ATTR(adapter_name, 0644, claw_adname_show, claw_adname_write); | 4223 | static DEVICE_ATTR(adapter_name, 0644, claw_adname_show, claw_adname_write); |
| 4224 | 4224 | ||
| 4225 | static ssize_t | 4225 | static ssize_t |
| 4226 | claw_apname_show(struct device *dev, char *buf) | 4226 | claw_apname_show(struct device *dev, struct device_attribute *attr, char *buf) |
| 4227 | { | 4227 | { |
| 4228 | struct claw_privbk *priv; | 4228 | struct claw_privbk *priv; |
| 4229 | struct claw_env * p_env; | 4229 | struct claw_env * p_env; |
| @@ -4237,7 +4237,7 @@ claw_apname_show(struct device *dev, char *buf) | |||
| 4237 | } | 4237 | } |
| 4238 | 4238 | ||
| 4239 | static ssize_t | 4239 | static ssize_t |
| 4240 | claw_apname_write(struct device *dev, const char *buf, size_t count) | 4240 | claw_apname_write(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) |
| 4241 | { | 4241 | { |
| 4242 | struct claw_privbk *priv; | 4242 | struct claw_privbk *priv; |
| 4243 | struct claw_env * p_env; | 4243 | struct claw_env * p_env; |
| @@ -4271,7 +4271,7 @@ claw_apname_write(struct device *dev, const char *buf, size_t count) | |||
| 4271 | static DEVICE_ATTR(api_type, 0644, claw_apname_show, claw_apname_write); | 4271 | static DEVICE_ATTR(api_type, 0644, claw_apname_show, claw_apname_write); |
| 4272 | 4272 | ||
| 4273 | static ssize_t | 4273 | static ssize_t |
| 4274 | claw_wbuff_show(struct device *dev, char *buf) | 4274 | claw_wbuff_show(struct device *dev, struct device_attribute *attr, char *buf) |
| 4275 | { | 4275 | { |
| 4276 | struct claw_privbk *priv; | 4276 | struct claw_privbk *priv; |
| 4277 | struct claw_env * p_env; | 4277 | struct claw_env * p_env; |
| @@ -4284,7 +4284,7 @@ claw_wbuff_show(struct device *dev, char *buf) | |||
| 4284 | } | 4284 | } |
| 4285 | 4285 | ||
| 4286 | static ssize_t | 4286 | static ssize_t |
| 4287 | claw_wbuff_write(struct device *dev, const char *buf, size_t count) | 4287 | claw_wbuff_write(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) |
| 4288 | { | 4288 | { |
| 4289 | struct claw_privbk *priv; | 4289 | struct claw_privbk *priv; |
| 4290 | struct claw_env * p_env; | 4290 | struct claw_env * p_env; |
| @@ -4312,7 +4312,7 @@ claw_wbuff_write(struct device *dev, const char *buf, size_t count) | |||
| 4312 | static DEVICE_ATTR(write_buffer, 0644, claw_wbuff_show, claw_wbuff_write); | 4312 | static DEVICE_ATTR(write_buffer, 0644, claw_wbuff_show, claw_wbuff_write); |
| 4313 | 4313 | ||
| 4314 | static ssize_t | 4314 | static ssize_t |
| 4315 | claw_rbuff_show(struct device *dev, char *buf) | 4315 | claw_rbuff_show(struct device *dev, struct device_attribute *attr, char *buf) |
| 4316 | { | 4316 | { |
| 4317 | struct claw_privbk *priv; | 4317 | struct claw_privbk *priv; |
| 4318 | struct claw_env * p_env; | 4318 | struct claw_env * p_env; |
| @@ -4325,7 +4325,7 @@ claw_rbuff_show(struct device *dev, char *buf) | |||
| 4325 | } | 4325 | } |
| 4326 | 4326 | ||
| 4327 | static ssize_t | 4327 | static ssize_t |
| 4328 | claw_rbuff_write(struct device *dev, const char *buf, size_t count) | 4328 | claw_rbuff_write(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) |
| 4329 | { | 4329 | { |
| 4330 | struct claw_privbk *priv; | 4330 | struct claw_privbk *priv; |
| 4331 | struct claw_env *p_env; | 4331 | struct claw_env *p_env; |
