diff options
author | Keith Packard <keithp@keithp.com> | 2015-09-01 11:20:04 -0700 |
---|---|---|
committer | Adam Jackson <ajax@redhat.com> | 2016-07-18 15:27:51 -0400 |
commit | fb0802113b4c57819cba15d64baf79bf4148607e (patch) | |
tree | f040ef9bac4f3a13d4bf9191aa28503a93cd7709 /hw/kdrive/ephyr/ephyr.c | |
parent | 410bc047480a9f98df678dc850bc6b99c3cfb5bf (diff) |
Remove readmask from screen block/wakeup handler
With no users of the interface needing the readmask anymore, we can
remove it from the argument passed to these functions.
Signed-off-by: Keith Packard <keithp@keithp.com>
Reviewed-by: Adam Jackson <ajax@redhat.com>
Diffstat (limited to 'hw/kdrive/ephyr/ephyr.c')
-rw-r--r-- | hw/kdrive/ephyr/ephyr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/kdrive/ephyr/ephyr.c b/hw/kdrive/ephyr/ephyr.c index d7948e8de..4eec72af9 100644 --- a/hw/kdrive/ephyr/ephyr.c +++ b/hw/kdrive/ephyr/ephyr.c @@ -347,14 +347,14 @@ ephyrEventWorkProc(ClientPtr client, void *closure) } static void -ephyrScreenBlockHandler(ScreenPtr pScreen, void *timeout, void *pRead) +ephyrScreenBlockHandler(ScreenPtr pScreen, void *timeout) { KdScreenPriv(pScreen); KdScreenInfo *screen = pScreenPriv->screen; EphyrScrPriv *scrpriv = screen->driver; pScreen->BlockHandler = scrpriv->BlockHandler; - (*pScreen->BlockHandler)(pScreen, timeout, pRead); + (*pScreen->BlockHandler)(pScreen, timeout); scrpriv->BlockHandler = pScreen->BlockHandler; pScreen->BlockHandler = ephyrScreenBlockHandler; |