diff options
author | 2020-10-24 21:06:56 +0000 | |
---|---|---|
committer | 2020-10-24 21:06:56 +0000 | |
commit | ba31782a1ffb8026ff5deaa091a2d2a9bc6905a1 (patch) | |
tree | c617849c9d2bb2ee2f7c9ab1f05f19d733d765f0 | |
parent | Don't modify sa in ikev2_pld_cp. Store cp_type in msg until message has (diff) | |
download | wireguard-openbsd-ba31782a1ffb8026ff5deaa091a2d2a9bc6905a1.tar.xz wireguard-openbsd-ba31782a1ffb8026ff5deaa091a2d2a9bc6905a1.zip |
/dev/drm*
-rw-r--r-- | sys/arch/powerpc64/powerpc64/conf.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/arch/powerpc64/powerpc64/conf.c b/sys/arch/powerpc64/powerpc64/conf.c index 0165105b500..060e7501cd1 100644 --- a/sys/arch/powerpc64/powerpc64/conf.c +++ b/sys/arch/powerpc64/powerpc64/conf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: conf.c,v 1.9 2020/07/16 19:37:58 kettenis Exp $ */ +/* $OpenBSD: conf.c,v 1.10 2020/10/24 21:06:56 kettenis Exp $ */ /*- * Copyright (c) 1991 The Regents of the University of California. @@ -61,6 +61,7 @@ int nblkdev = nitems(bdevsw); #include "ch.h" #include "com.h" cdev_decl(com); +#include "drm.h" #include "dt.h" #include "fido.h" #include "fuse.h" @@ -191,7 +192,7 @@ struct cdevsw cdevsw[] = cdev_notdef(), /* 84 */ cdev_notdef(), /* 85 */ cdev_notdef(), /* 86 */ - cdev_notdef(), /* 87 */ + cdev_drm_init(NDRM,drm), /* 87: drm */ cdev_ipmi_init(NIPMI,ipmi), /* 88: ipmi */ cdev_notdef(), /* 89 */ cdev_notdef(), /* 90 */ |