strict kobj signatures: fix iicbus_write impl in dev/pcf

input buf is const

Reviewed by:	imp, current@
Approved by:	jhb (mentor)
This commit is contained in:
Andriy Gapon 2009-06-11 17:15:44 +00:00
parent 4fc23012c6
commit 1c44eb75f7
2 changed files with 2 additions and 2 deletions

View File

@ -378,7 +378,7 @@ pcf_rst_card(device_t dev, u_char speed, u_char addr, u_char *oldaddr)
}
int
pcf_write(device_t dev, char *buf, int len, int *sent, int timeout /* us */)
pcf_write(device_t dev, const char *buf, int len, int *sent, int timeout /* us */)
{
struct pcf_softc *sc = DEVTOSOFTC(dev);
int bytes, error = 0;

View File

@ -135,7 +135,7 @@ pcf_get_S1(struct pcf_softc *sc)
extern int pcf_repeated_start(device_t, u_char, int);
extern int pcf_start(device_t, u_char, int);
extern int pcf_stop(device_t);
extern int pcf_write(device_t, char *, int, int *, int);
extern int pcf_write(device_t, const char *, int, int *, int);
extern int pcf_read(device_t, char *, int, int *, int, int);
extern int pcf_rst_card(device_t, u_char, u_char, u_char *);
extern driver_intr_t pcf_intr;