Lines Matching defs:sdev
287 * @sdev: client handle.
296 int slim_read(struct slim_device *sdev, u32 addr, size_t count, u8 *val)
302 return slim_xfer_msg(sdev, &msg, SLIM_MSG_MC_REQUEST_VALUE);
309 * @sdev: client handle.
314 int slim_readb(struct slim_device *sdev, u32 addr)
319 ret = slim_read(sdev, addr, 1, &buf);
330 * @sdev: client handle.
339 int slim_write(struct slim_device *sdev, u32 addr, size_t count, u8 *val)
345 return slim_xfer_msg(sdev, &msg, SLIM_MSG_MC_CHANGE_VALUE);
352 * @sdev: client handle.
361 int slim_writeb(struct slim_device *sdev, u32 addr, u8 value)
363 return slim_write(sdev, addr, 1, &value);