summaryrefslogtreecommitdiffstats
path: root/contrib/pnpinfo/pnpinfo.c
diff options
context:
space:
mode:
authordfr <dfr@FreeBSD.org>1999-05-22 17:35:48 +0000
committerdfr <dfr@FreeBSD.org>1999-05-22 17:35:48 +0000
commit0ff387396e738dc73c44daeab2659be2154ed750 (patch)
treed186677ffacc74e9ff7dd570c4e64a8dd14b00cf /contrib/pnpinfo/pnpinfo.c
parent345a2a7d8e7e1cf1fedabe824a70a746764f7574 (diff)
downloadFreeBSD-src-0ff387396e738dc73c44daeab2659be2154ed750.zip
FreeBSD-src-0ff387396e738dc73c44daeab2659be2154ed750.tar.gz
Port pnpinfo to alpha.
Diffstat (limited to 'contrib/pnpinfo/pnpinfo.c')
-rw-r--r--contrib/pnpinfo/pnpinfo.c14
1 files changed, 10 insertions, 4 deletions
diff --git a/contrib/pnpinfo/pnpinfo.c b/contrib/pnpinfo/pnpinfo.c
index 7c1751f..f37c3f4 100644
--- a/contrib/pnpinfo/pnpinfo.c
+++ b/contrib/pnpinfo/pnpinfo.c
@@ -23,7 +23,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: pnpinfo.c,v 1.3 1998/09/13 22:15:44 eivind Exp $
+ * $Id: pnpinfo.c,v 1.4 1999/05/04 16:59:42 luoqi Exp $
*/
#include <sys/time.h>
@@ -578,16 +578,22 @@ isolation_protocol()
}
-void
-main()
+int
+main(int argc, char **argv)
{
int num_pnp_devs;
+#ifdef __i386__
/* Hey what about a i386_iopl() call :) */
if (open("/dev/io", O_RDONLY) < 0) {
fprintf (stderr, "pnpinfo: Can't get I/O privilege.\n");
exit (1);
}
+#endif
+#ifdef __alpha__
+ ioperm(0x203, 0x400 - 0x203, 1);
+#endif
+
printf("Checking for Plug-n-Play devices...\n");
/* Try various READ_DATA ports from 0x203-0x3ff */
@@ -599,6 +605,6 @@ main()
}
if (!num_pnp_devs) {
printf("No Plug-n-Play devices were found\n");
- return;
+ return 0;
}
}
OpenPOWER on IntegriCloud