diff options
author | aiju <devnull@localhost> | 2011-04-16 14:15:01 +0200 |
---|---|---|
committer | aiju <devnull@localhost> | 2011-04-16 14:15:01 +0200 |
commit | 4d4fc2ca3453a4deb79b26eb62449eab94b86827 (patch) | |
tree | 119e18cff32624e110a2229a5d43d2815e118a6a /sys/src/9/pc/devarch.c | |
parent | 65b058830b619bf682c8900a207d2c6b87d2c37e (diff) |
moved /dev/mordor to devcons
Diffstat (limited to 'sys/src/9/pc/devarch.c')
-rw-r--r-- | sys/src/9/pc/devarch.c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/sys/src/9/pc/devarch.c b/sys/src/9/pc/devarch.c index c45271682..3228736ee 100644 --- a/sys/src/9/pc/devarch.c +++ b/sys/src/9/pc/devarch.c @@ -987,20 +987,6 @@ archctlwrite(Chan*, void *a, long n, vlong) return n; } -static long -mordorread(Chan*, void*, long, vlong) -{ - error("one does not simply read from mordor"); - return 0; -} - -static long -mordorwrite(Chan*, void*, long, vlong) -{ - error("one does not simply write into mordor"); - return 0; -} - void archinit(void) { @@ -1049,7 +1035,6 @@ archinit(void) addarchfile("cputype", 0444, cputyperead, nil); addarchfile("archctl", 0664, archctlread, archctlwrite); - addarchfile("mordor", 0666, mordorread, mordorwrite); } /* |