diff options
Diffstat (limited to 'drivers/isdn')
-rw-r--r-- | drivers/isdn/capi/capifs.c | 2 | ||||
-rw-r--r-- | drivers/isdn/gigaset/bas-gigaset.c | 2 | ||||
-rw-r--r-- | drivers/isdn/hisax/hfc_usb.h | 6 |
3 files changed, 4 insertions, 6 deletions
diff --git a/drivers/isdn/capi/capifs.c b/drivers/isdn/capi/capifs.c index 9ea6bd0ddc35..2dd1b57b0ba4 100644 --- a/drivers/isdn/capi/capifs.c +++ b/drivers/isdn/capi/capifs.c | |||
@@ -104,7 +104,6 @@ capifs_fill_super(struct super_block *s, void *data, int silent) | |||
104 | inode->i_ino = 1; | 104 | inode->i_ino = 1; |
105 | inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME; | 105 | inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME; |
106 | inode->i_blocks = 0; | 106 | inode->i_blocks = 0; |
107 | inode->i_blksize = 1024; | ||
108 | inode->i_uid = inode->i_gid = 0; | 107 | inode->i_uid = inode->i_gid = 0; |
109 | inode->i_mode = S_IFDIR | S_IRUGO | S_IXUGO | S_IWUSR; | 108 | inode->i_mode = S_IFDIR | S_IRUGO | S_IXUGO | S_IWUSR; |
110 | inode->i_op = &simple_dir_inode_operations; | 109 | inode->i_op = &simple_dir_inode_operations; |
@@ -149,7 +148,6 @@ void capifs_new_ncci(unsigned int number, dev_t device) | |||
149 | if (!inode) | 148 | if (!inode) |
150 | return; | 149 | return; |
151 | inode->i_ino = number+2; | 150 | inode->i_ino = number+2; |
152 | inode->i_blksize = 1024; | ||
153 | inode->i_uid = config.setuid ? config.uid : current->fsuid; | 151 | inode->i_uid = config.setuid ? config.uid : current->fsuid; |
154 | inode->i_gid = config.setgid ? config.gid : current->fsgid; | 152 | inode->i_gid = config.setgid ? config.gid : current->fsgid; |
155 | inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME; | 153 | inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME; |
diff --git a/drivers/isdn/gigaset/bas-gigaset.c b/drivers/isdn/gigaset/bas-gigaset.c index 3845defd4901..5cfbe6a38010 100644 --- a/drivers/isdn/gigaset/bas-gigaset.c +++ b/drivers/isdn/gigaset/bas-gigaset.c | |||
@@ -192,7 +192,7 @@ static char *get_usb_statmsg(int status) | |||
192 | return "bit stuffing error, timeout, or unknown USB error"; | 192 | return "bit stuffing error, timeout, or unknown USB error"; |
193 | case -EILSEQ: | 193 | case -EILSEQ: |
194 | return "CRC mismatch, timeout, or unknown USB error"; | 194 | return "CRC mismatch, timeout, or unknown USB error"; |
195 | case -ETIMEDOUT: | 195 | case -ETIME: |
196 | return "timed out"; | 196 | return "timed out"; |
197 | case -EPIPE: | 197 | case -EPIPE: |
198 | return "endpoint stalled"; | 198 | return "endpoint stalled"; |
diff --git a/drivers/isdn/hisax/hfc_usb.h b/drivers/isdn/hisax/hfc_usb.h index ec52c1a7c22a..6349367ed480 100644 --- a/drivers/isdn/hisax/hfc_usb.h +++ b/drivers/isdn/hisax/hfc_usb.h | |||
@@ -137,11 +137,11 @@ static struct hfcusb_symbolic_list urb_errlist[] = { | |||
137 | {-ENXIO, "URB already queued"}, | 137 | {-ENXIO, "URB already queued"}, |
138 | {-EFBIG, "Too much ISO frames requested"}, | 138 | {-EFBIG, "Too much ISO frames requested"}, |
139 | {-ENOSR, "Buffer error (overrun)"}, | 139 | {-ENOSR, "Buffer error (overrun)"}, |
140 | {-EPIPE, "Specified endpoint is stalled (device not responding)"}, | 140 | {-EPIPE, "Specified endpoint is stalled"}, |
141 | {-EOVERFLOW, "Babble (bad cable?)"}, | 141 | {-EOVERFLOW, "Babble (bad cable?)"}, |
142 | {-EPROTO, "Bit-stuff error (bad cable?)"}, | 142 | {-EPROTO, "Bit-stuff error (bad cable?)"}, |
143 | {-EILSEQ, "CRC/Timeout"}, | 143 | {-EILSEQ, "CRC or missing token"}, |
144 | {-ETIMEDOUT, "NAK (device does not respond)"}, | 144 | {-ETIME, "Device did not respond"}, |
145 | {-ESHUTDOWN, "Device unplugged"}, | 145 | {-ESHUTDOWN, "Device unplugged"}, |
146 | {-1, NULL} | 146 | {-1, NULL} |
147 | }; | 147 | }; |