(!1639) Xext: vidmode: drop now obsolete swap procs
Several SProc's have become no-ops, just calling the actual Proc's, so we can get rid of them entirely. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
parent
c9cc516cf7
commit
97c4d66252
|
@ -1703,12 +1703,6 @@ ProcVidModeDispatch(ClientPtr client)
|
|||
}
|
||||
}
|
||||
|
||||
static int _X_COLD
|
||||
SProcVidModeQueryVersion(ClientPtr client)
|
||||
{
|
||||
return ProcVidModeQueryVersion(client);
|
||||
}
|
||||
|
||||
static int _X_COLD
|
||||
SProcVidModeGetModeLine(ClientPtr client)
|
||||
{
|
||||
|
@ -2046,7 +2040,7 @@ SProcVidModeDispatch(ClientPtr client)
|
|||
REQUEST(xReq);
|
||||
switch (stuff->data) {
|
||||
case X_XF86VidModeQueryVersion:
|
||||
return SProcVidModeQueryVersion(client);
|
||||
return ProcVidModeQueryVersion(client);
|
||||
case X_XF86VidModeGetModeLine:
|
||||
return SProcVidModeGetModeLine(client);
|
||||
case X_XF86VidModeGetMonitor:
|
||||
|
|
Loading…
Reference in New Issue