From bjoern johannesson, in netbsd-general... Reset the mask to 0, used to

be 0xa. Is it wrong in the cfe? Should this better be done via a quirk?
This commit is contained in:
christos 2017-08-01 12:15:21 +00:00
parent 215872182a
commit 2ed5654a9c
1 changed files with 4 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: aic_pcmcia.c,v 1.43 2009/11/12 19:24:06 dyoung Exp $ */
/* $NetBSD: aic_pcmcia.c,v 1.44 2017/08/01 12:15:21 christos Exp $ */
/*
* Copyright (c) 1997 Marc Horowitz. All rights reserved.
@ -30,7 +30,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: aic_pcmcia.c,v 1.43 2009/11/12 19:24:06 dyoung Exp $");
__KERNEL_RCSID(0, "$NetBSD: aic_pcmcia.c,v 1.44 2017/08/01 12:15:21 christos Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@ -101,6 +101,8 @@ aic_pcmcia_validate_config(struct pcmcia_config_entry *cfe)
cfe->num_memspace != 0 ||
cfe->num_iospace != 1)
return (EINVAL);
cfe->iomask = 0; /* XXX: wrong from cfe?, quirk? */
return (0);
}