HardenedBSD/usr.sbin/pccard/pccardc/wrattr.c
Poul-Henning Kamp f2b46629be The userland part of Andrew McRae's PCMCIA/PCCARD code.
This is not quite finished yet, and therefore I have not added it to the
usr.sbin/Makefile yet.
I collected a bunch of Andrews small programs into one: pccardc /phk

Reviewed by:	phk
Submitted by:	Andrew McRae <andrew@mega.com.au>
1995-08-24 09:03:04 +00:00

47 lines
739 B
C

#include <stdio.h>
#include <sys/types.h>
#include <sys/ioctl.h>
#include <pccard/card.h>
int
wrattr_main(argc, argv)
int argc;
char *argv[];
{
int reg,value;
char name[64], c;
int fd;
off_t offs;
if (argc != 4)
{
fprintf(stderr, "usage: wrmem slot offs value\n");
exit(1);
}
sprintf(name, "/dev/card%d", atoi(argv[1]));
fd = open(name, 2);
if (fd < 0)
{
perror(name);
exit(1);
}
reg = MDF_ATTR;
if (ioctl(fd, PIOCRWFLAG, &reg))
{
perror("ioctl (PIOCRWFLAG)");
exit(1);
}
if (sscanf(argv[2], "%x", &reg) != 1 ||
sscanf(argv[3], "%x", &value) != 1)
{
fprintf(stderr, "arg error\n");
exit(1);
}
offs = reg;
c = value;
lseek(fd, offs, SEEK_SET);
if (write(fd, &c, 1) != 1)
perror(name);
}