diff options
author | Marc Balmer <mbalmer@cvs.openbsd.org> | 2008-06-14 21:37:14 +0000 |
---|---|---|
committer | Marc Balmer <mbalmer@cvs.openbsd.org> | 2008-06-14 21:37:14 +0000 |
commit | 264cf312e0ae1c07b82a71e2ed0b65731f5c05a8 (patch) | |
tree | 93134a1d793f1eae6414b9967944e96b1599d480 /xserver/os | |
parent | 3cb9b85ddbac38b255a0caaf0475ced230a2d93d (diff) |
Add amdmsr(4) to the list of privsep devices.
ok matthieu
Diffstat (limited to 'xserver/os')
-rw-r--r-- | xserver/os/privsep.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/xserver/os/privsep.c b/xserver/os/privsep.c index 1394b844a..0d018616a 100644 --- a/xserver/os/privsep.c +++ b/xserver/os/privsep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: privsep.c,v 1.7 2008/06/12 22:20:24 oga Exp $ */ +/* $OpenBSD: privsep.c,v 1.8 2008/06/14 21:37:13 mbalmer Exp $ */ /* * Copyright 2001 Niels Provos <provos@citi.umich.edu> * All rights reserved. @@ -109,6 +109,7 @@ struct okdev { {"/dev/pci", O_RDWR | O_NONBLOCK | O_EXCL}, {"/dev/agp0", O_RDWR | O_NONBLOCK | O_EXCL}, {"/dev/drm0", O_RDWR }, + {"/dev/amdmsr", O_RDWR | O_EXCL}, {NULL, 0} }; |