xfree86: remove history_size

For a couple of ABIs now the history size was essentially static anyway.

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
This commit is contained in:
Peter Hutterer 2010-09-01 14:35:40 +10:00
parent 892e39025b
commit 6922b31a13
2 changed files with 0 additions and 5 deletions

View File

@ -280,9 +280,6 @@ xf86ProcessCommonOptions(InputInfoPtr pInfo,
pInfo->flags |= XI86_ALWAYS_CORE;
xf86Msg(X_CONFIG, "%s: always reports core events\n", pInfo->name);
}
/* Backwards compatibility. */
pInfo->history_size = GetMotionHistorySize();
}
/***********************************************************************
@ -670,7 +667,6 @@ xf86AllocateInput(InputDriverPtr drv, IDevPtr idev)
new->type_name = "UNKNOWN";
new->device_control = NULL;
new->read_input = NULL;
new->history_size = 0;
new->control_proc = NULL;
new->close_proc = NULL;
new->switch_mode = NULL;

View File

@ -130,7 +130,6 @@ typedef struct _InputInfoRec {
InputDriverPtr drv;
pointer module;
pointer options;
unsigned int history_size;
InputAttributes *attrs;
} InputInfoRec, *InputInfoPtr;