mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 04:18:39 +08:00
[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>
This commit is contained in:
parent
388c69789a
commit
41aac24f8f
@ -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();
|
||||
|
Loading…
Reference in New Issue
Block a user