summaryrefslogtreecommitdiffstats
path: root/usr.sbin/pccard/pccardc/wrreg.c
blob: 42bdd7d574f224c2e1292fb1187c9f3b0684c63c (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
39
40
41
42
43
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <fcntl.h>
#include <sys/types.h>
#include <sys/ioctl.h>

#include <pccard/card.h>

int
wrreg_main(argc, argv)
int	argc;
char	*argv[];
{
int reg,value;
char	name[64];
int	fd;
struct pcic_reg r;

	if (argc != 4)
		{
		fprintf(stderr, "usage: wrreg slot reg value\n");
		exit(1);
		}
	sprintf(name, "/dev/card%d", atoi(argv[1]));
	fd = open(name, 2);
	if (fd < 0)
		{
		perror(name);
		exit(1);
		}
	if (sscanf(argv[2], "%x", &reg) != 1 ||
	    sscanf(argv[3], "%x", &value) != 1)
		{
		fprintf(stderr, "arg error\n");
		exit(1);
		}
	r.reg = reg;
	r.value = value;
	if (ioctl(fd, PIOCSREG, &r))
		perror("ioctl");
	return 0;
}
OpenPOWER on IntegriCloud