diff options
author | Dave Airlie <airlied@redhat.com> | 2011-03-09 15:01:20 +1000 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2011-03-10 11:01:09 +1000 |
commit | 0bccfcc97b2300b83aa4693454c27ac87f23f221 (patch) | |
tree | 162e2a2b41ad7e52396d2aa287f470ec7efa35b9 /Xext/xvdisp.c | |
parent | 5a94934487ea477947e24dcd4720b7cde77d3d2f (diff) |
panoramiX: convert 0->panoramiXNumScreens loops to macro (v3)
This just uses the FOR_NSCREENS macro instead.
v2: remove some of the 1->x loops.
v3: drop the 1->0 loop, will rework later.
Signed-off-by: Dave Airlie <airlied@redhat.com>
Reviewed-by: Daniel Stone <daniel@fooishbar.org>
Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'Xext/xvdisp.c')
-rw-r--r-- | Xext/xvdisp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Xext/xvdisp.c b/Xext/xvdisp.c index deddebd4b..beb26a973 100644 --- a/Xext/xvdisp.c +++ b/Xext/xvdisp.c @@ -1927,7 +1927,7 @@ void XineramifyXv(void) if(!port) break; - for(k = 0; k < PanoramiXNumScreens; k++) { + FOR_NSCREENS(k) { if(MatchingAdaptors[k] && (MatchingAdaptors[k]->nPorts > j)) port->info[k].id = MatchingAdaptors[k]->base_id + j; else |