diff options
Diffstat (limited to 'net/atm/atm_sysfs.c')
-rw-r--r-- | net/atm/atm_sysfs.c | 28 |
1 files changed, 15 insertions, 13 deletions
diff --git a/net/atm/atm_sysfs.c b/net/atm/atm_sysfs.c index b5674dc2083d..799c631f0fed 100644 --- a/net/atm/atm_sysfs.c +++ b/net/atm/atm_sysfs.c | |||
@@ -1,6 +1,7 @@ | |||
1 | /* ATM driver model support. */ | 1 | /* ATM driver model support. */ |
2 | 2 | ||
3 | #include <linux/kernel.h> | 3 | #include <linux/kernel.h> |
4 | #include <linux/slab.h> | ||
4 | #include <linux/init.h> | 5 | #include <linux/init.h> |
5 | #include <linux/kobject.h> | 6 | #include <linux/kobject.h> |
6 | #include <linux/atmdev.h> | 7 | #include <linux/atmdev.h> |
@@ -42,13 +43,14 @@ static ssize_t show_atmaddress(struct device *cdev, | |||
42 | 43 | ||
43 | spin_lock_irqsave(&adev->lock, flags); | 44 | spin_lock_irqsave(&adev->lock, flags); |
44 | list_for_each_entry(aaddr, &adev->local, entry) { | 45 | list_for_each_entry(aaddr, &adev->local, entry) { |
45 | for(i = 0, j = 0; i < ATM_ESA_LEN; ++i, ++j) { | 46 | for (i = 0, j = 0; i < ATM_ESA_LEN; ++i, ++j) { |
46 | if (j == *fmt) { | 47 | if (j == *fmt) { |
47 | pos += sprintf(pos, "."); | 48 | pos += sprintf(pos, "."); |
48 | ++fmt; | 49 | ++fmt; |
49 | j = 0; | 50 | j = 0; |
50 | } | 51 | } |
51 | pos += sprintf(pos, "%02x", aaddr->addr.sas_addr.prv[i]); | 52 | pos += sprintf(pos, "%02x", |
53 | aaddr->addr.sas_addr.prv[i]); | ||
52 | } | 54 | } |
53 | pos += sprintf(pos, "\n"); | 55 | pos += sprintf(pos, "\n"); |
54 | } | 56 | } |
@@ -78,17 +80,17 @@ static ssize_t show_link_rate(struct device *cdev, | |||
78 | 80 | ||
79 | /* show the link rate, not the data rate */ | 81 | /* show the link rate, not the data rate */ |
80 | switch (adev->link_rate) { | 82 | switch (adev->link_rate) { |
81 | case ATM_OC3_PCR: | 83 | case ATM_OC3_PCR: |
82 | link_rate = 155520000; | 84 | link_rate = 155520000; |
83 | break; | 85 | break; |
84 | case ATM_OC12_PCR: | 86 | case ATM_OC12_PCR: |
85 | link_rate = 622080000; | 87 | link_rate = 622080000; |
86 | break; | 88 | break; |
87 | case ATM_25_PCR: | 89 | case ATM_25_PCR: |
88 | link_rate = 25600000; | 90 | link_rate = 25600000; |
89 | break; | 91 | break; |
90 | default: | 92 | default: |
91 | link_rate = adev->link_rate * 8 * 53; | 93 | link_rate = adev->link_rate * 8 * 53; |
92 | } | 94 | } |
93 | pos += sprintf(pos, "%d\n", link_rate); | 95 | pos += sprintf(pos, "%d\n", link_rate); |
94 | 96 | ||