- Sprinkle const.

- Remove incorrect __unused.
This commit is contained in:
Marius Strobl 2009-03-19 20:24:30 +00:00
parent c4d3fad2ec
commit 652985b98f

View File

@ -52,18 +52,18 @@ __FBSDID("$FreeBSD$");
struct ofwo_extabent { struct ofwo_extabent {
const char *ex_prop; const char *ex_prop;
int (*ex_handler)(struct ofwo_extabent *, int, const void *, int (*ex_handler)(const struct ofwo_extabent *, int,
int, const char *); const void *, int, const char *);
}; };
static int ofwo_oemlogo(struct ofwo_extabent *, int, const void *, int, static int ofwo_oemlogo(const struct ofwo_extabent *, int, const void *,
const char *); int, const char *);
static int ofwo_secmode(struct ofwo_extabent *, int, const void *, int, static int ofwo_secmode(const struct ofwo_extabent *, int, const void *,
const char *); int, const char *);
static int ofwo_secpwd(struct ofwo_extabent *, int, const void *, int, static int ofwo_secpwd(const struct ofwo_extabent *, int, const void *,
const char *); int, const char *);
static struct ofwo_extabent ofwo_extab[] = { static const struct ofwo_extabent const ofwo_extab[] = {
{ "oem-logo", ofwo_oemlogo }, { "oem-logo", ofwo_oemlogo },
{ "security-mode", ofwo_secmode }, { "security-mode", ofwo_secmode },
{ "security-password", ofwo_secpwd }, { "security-password", ofwo_secpwd },
@ -81,8 +81,8 @@ ofwo_printprop(const char *prop, const char* buf, int buflen)
} }
static int static int
ofwo_oemlogo(struct ofwo_extabent *exent, int fd, const void *buf, int buflen, ofwo_oemlogo(const struct ofwo_extabent *exent, int fd, const void *buf,
const char *val) int buflen, const char *val)
{ {
int lfd; int lfd;
char logo[OFWO_LOGO + 1]; char logo[OFWO_LOGO + 1];
@ -117,8 +117,8 @@ ofwo_oemlogo(struct ofwo_extabent *exent, int fd, const void *buf, int buflen,
} }
static int static int
ofwo_secmode(struct ofwo_extabent *exent, int fd, const void *buf, int buflen, ofwo_secmode(const struct ofwo_extabent *exent, int fd, const void *buf,
const char *val) int buflen, const char *val)
{ {
int res; int res;
@ -145,8 +145,8 @@ ofwo_secmode(struct ofwo_extabent *exent, int fd, const void *buf, int buflen,
} }
static int static int
ofwo_secpwd(struct ofwo_extabent *exent, int fd __unused, ofwo_secpwd(const struct ofwo_extabent *exent, int fd, const void *buf,
const void *buf __unused, __unused int buflen, const char *val) int buflen, const char *val)
{ {
void *pbuf; void *pbuf;
int len, pblen, rv; int len, pblen, rv;
@ -246,14 +246,14 @@ ofwo_dump(void)
int fd, len, nlen, pblen; int fd, len, nlen, pblen;
phandle_t optnode; phandle_t optnode;
char prop[OFWO_MAXPROP + 1]; char prop[OFWO_MAXPROP + 1];
struct ofwo_extabent *ex; const struct ofwo_extabent *ex;
pblen = 0; pblen = 0;
pbuf = NULL; pbuf = NULL;
fd = ofw_open(O_RDONLY); fd = ofw_open(O_RDONLY);
optnode = ofw_optnode(fd); optnode = ofw_optnode(fd);
for (nlen = ofw_firstprop(fd, optnode, prop, sizeof(prop)); nlen != 0; for (nlen = ofw_firstprop(fd, optnode, prop, sizeof(prop)); nlen != 0;
nlen = ofw_nextprop(fd, optnode, prop, prop, sizeof(prop))) { nlen = ofw_nextprop(fd, optnode, prop, prop, sizeof(prop))) {
len = ofw_getprop_alloc(fd, optnode, prop, &pbuf, &pblen, 1); len = ofw_getprop_alloc(fd, optnode, prop, &pbuf, &pblen, 1);
if (len < 0) if (len < 0)
continue; continue;
@ -277,7 +277,7 @@ ofwo_action(const char *prop, const char *val)
{ {
void *pbuf; void *pbuf;
int fd, len, pblen, rv; int fd, len, pblen, rv;
struct ofwo_extabent *ex; const struct ofwo_extabent *ex;
pblen = 0; pblen = 0;
rv = EX_OK; rv = EX_OK;
@ -300,7 +300,7 @@ ofwo_action(const char *prop, const char *val)
rv = (*ex->ex_handler)(ex, fd, pbuf, len, val); rv = (*ex->ex_handler)(ex, fd, pbuf, len, val);
else if (val) else if (val)
rv = ofwo_setstr(fd, pbuf, len, prop, val); rv = ofwo_setstr(fd, pbuf, len, prop, val);
else else
ofwo_printprop(prop, (char *)pbuf, len); ofwo_printprop(prop, (char *)pbuf, len);
out: out:
if (pbuf != NULL) if (pbuf != NULL)