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:
parent
4fc23012c6
commit
1c44eb75f7
@ -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;
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user