1
0
Fork 0

[PATCH] r128_state.c: break missing in switch statement

drm: fix r128_state.c switch statements..  in drivers/char/drm/r128_state.c
(linux-2.6.12-rc2), some breaks are missing in the switch statement.  See
trivial fix below.

Signed-off-by: Hansjoerg Lipp <hjlipp@web.de>
Signed-off-by: Dave Airlie <airlied@linux.ie>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
hifive-unleashed-5.1
Dave Airlie 2005-04-16 15:24:04 -07:00 committed by Linus Torvalds
parent 388c69789a
commit 41aac24f8f
1 changed files with 4 additions and 0 deletions

View File

@ -1549,12 +1549,16 @@ static int r128_cce_depth( DRM_IOCTL_ARGS )
switch ( depth.func ) {
case R128_WRITE_SPAN:
ret = r128_cce_dispatch_write_span( dev, &depth );
break;
case R128_WRITE_PIXELS:
ret = r128_cce_dispatch_write_pixels( dev, &depth );
break;
case R128_READ_SPAN:
ret = r128_cce_dispatch_read_span( dev, &depth );
break;
case R128_READ_PIXELS:
ret = r128_cce_dispatch_read_pixels( dev, &depth );
break;
}
COMMIT_RING();