1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-10-21 02:48:46 +00:00

Remove a relic from the old "equiv" kludge

This commit is contained in:
Poul-Henning Kamp 1994-11-02 04:55:15 +00:00
parent 86f39ea7e0
commit c4b01b57f6
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=4076

View File

@ -85,22 +85,6 @@ parse_option(void)
}
}
static struct apm_eqv_event eqv_event[APM_MAX_EQUIV_EVENTS];
static int eqv_num = 0;
static apm_eqv_event_t
get_eqv_event(int id)
{
int i;
for (i = 0; i < eqv_num; i++) {
if (id == eqv_event[i].aee_event) {
return &eqv_event[i];
}
}
return NULL;
}
static void
enable_apm(int dh)
{