Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 54908
b: refs/heads/master
c: 88b229c
h: refs/heads/master
v: v3
  • Loading branch information
Robert P. J. Day authored and Linus Torvalds committed May 8, 2007
1 parent dfa9c5d commit dc6100e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 36cc535b852bd59d04c43fe8e4c05c7da46bc625
refs/heads/master: 88b229c7f714e5385bbf5be031beb3866efeb272
4 changes: 2 additions & 2 deletions trunk/drivers/video/modedb.c
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,7 @@ static int my_atoi(const char *name)

for (;; name++) {
switch (*name) {
case '0'...'9':
case '0' ... '9':
val = 10*val+(*name-'0');
break;
default:
Expand Down Expand Up @@ -548,7 +548,7 @@ int fb_find_mode(struct fb_var_screeninfo *var,
} else
goto done;
break;
case '0'...'9':
case '0' ... '9':
break;
case 'M':
if (!yres_specified)
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/video/pxafb.c
Original file line number Diff line number Diff line change
Expand Up @@ -1203,7 +1203,7 @@ static int __init pxafb_parse_options(struct device *dev, char *options)
} else
goto done;
break;
case '0'...'9':
case '0' ... '9':
break;
default:
goto done;
Expand Down

0 comments on commit dc6100e

Please sign in to comment.