Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/netbsd-8]: src/sys/dev/pcmcia Pull up following revision(s) (requested b...
details: https://anonhg.NetBSD.org/src/rev/46ac8d1aa087
branches: netbsd-8
changeset: 434178:46ac8d1aa087
user: snj <snj%NetBSD.org@localhost>
date: Sat Aug 05 03:52:57 2017 +0000
description:
Pull up following revision(s) (requested by christos in ticket #177):
sys/dev/pcmcia/aic_pcmcia.c: revision 1.44
>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?
diffstat:
sys/dev/pcmcia/aic_pcmcia.c | 6 ++++--
1 files changed, 4 insertions(+), 2 deletions(-)
diffs (27 lines):
diff -r fe050751c094 -r 46ac8d1aa087 sys/dev/pcmcia/aic_pcmcia.c
--- a/sys/dev/pcmcia/aic_pcmcia.c Sat Aug 05 03:51:38 2017 +0000
+++ b/sys/dev/pcmcia/aic_pcmcia.c Sat Aug 05 03:52:57 2017 +0000
@@ -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.43.56.1 2017/08/05 03:52:57 snj 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.43.56.1 2017/08/05 03:52:57 snj Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -101,6 +101,8 @@
cfe->num_memspace != 0 ||
cfe->num_iospace != 1)
return (EINVAL);
+
+ cfe->iomask = 0; /* XXX: wrong from cfe?, quirk? */
return (0);
}
Home |
Main Index |
Thread Index |
Old Index