summaryrefslogtreecommitdiffstats
path: root/usr.sbin/pccard/pccardc/pccardmem.c
blob: 3c75f1303fbe721447e991ec758cfc736a249154 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#include <stdio.h>
#include <sys/types.h>
#include <sys/ioctl.h>

#include <pccard/card.h>
int
pccardmem_main(argc, argv)
int	argc;
char	*argv[];
{
int addr = 0;
int	fd;

	if (argc > 2)
		{
		fprintf(stderr, "usage: %s [ memory-address ]\n", argv[0]);
		exit(1);
		}
	fd = open("/dev/card0", 0);
	if (fd < 0)
		{
		perror("/dev/card0");
		exit(1);
		}
	if (argc == 2)
		{
		if (sscanf(argv[1], "%x", &addr) != 1)
			{
			fprintf(stderr, "arg error\n");
			exit(1);
			}
		}
	if (ioctl(fd, PIOCRWMEM, &addr))
		perror("ioctl");
	else
		printf("PCCARD Memory address set to 0x%x\n", addr);
	exit(0);
}
OpenPOWER on IntegriCloud