diff options
-rw-r--r-- | drivers/isdn/i4l/isdn_common.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/drivers/isdn/i4l/isdn_common.c b/drivers/isdn/i4l/isdn_common.c index 6a5b3f00f9ad..74ee00f5b310 100644 --- a/drivers/isdn/i4l/isdn_common.c +++ b/drivers/isdn/i4l/isdn_common.c | |||
@@ -166,11 +166,9 @@ isdn_wildmat(char *s, char *p) | |||
166 | for (; *p; s++, p++) | 166 | for (; *p; s++, p++) |
167 | switch (*p) { | 167 | switch (*p) { |
168 | case '\\': | 168 | case '\\': |
169 | /* | 169 | /* Literal match with following character. */ |
170 | * Literal match with following character, | ||
171 | * fall through. | ||
172 | */ | ||
173 | p++; | 170 | p++; |
171 | /* fall through */ | ||
174 | default: | 172 | default: |
175 | if (*s != *p) | 173 | if (*s != *p) |
176 | return (*s == '\0') ? 2 : 1; | 174 | return (*s == '\0') ? 2 : 1; |
@@ -729,6 +727,7 @@ isdn_status_callback(isdn_ctrl *c) | |||
729 | if (divert_if) | 727 | if (divert_if) |
730 | return (divert_if->stat_callback(c)); | 728 | return (divert_if->stat_callback(c)); |
731 | #endif /* CONFIG_ISDN_DIVERSION */ | 729 | #endif /* CONFIG_ISDN_DIVERSION */ |
730 | /* fall through */ | ||
732 | default: | 731 | default: |
733 | return -1; | 732 | return -1; |
734 | } | 733 | } |