Home | History | Annotate | Download | only in pci

Lines Matching refs:cookie

73 radeonfb_i2cbb_set_bits(void *cookie, uint32_t bits)
75 struct radeonfb_i2c *ric = (struct radeonfb_i2c *)cookie;
83 radeonfb_i2cbb_set_dir(void *cookie, uint32_t bits)
85 struct radeonfb_i2c *ric = (struct radeonfb_i2c *)cookie;
92 radeonfb_i2cbb_read(void *cookie)
94 struct radeonfb_i2c *ric = (struct radeonfb_i2c *)cookie;
117 radeonfb_i2c_acquire_bus(void *cookie, int flags)
119 struct radeonfb_i2c *ric = (struct radeonfb_i2c *)cookie;
150 radeonfb_i2c_release_bus(void *cookie, int flags)
152 struct radeonfb_i2c *ric = (struct radeonfb_i2c *)cookie;
163 radeonfb_i2c_send_start(void *cookie, int flags)
166 return i2c_bitbang_send_start(cookie, flags, &radeonfb_i2cbb_ops);
170 radeonfb_i2c_send_stop(void *cookie, int flags)
173 return i2c_bitbang_send_stop(cookie, flags, &radeonfb_i2cbb_ops);
177 radeonfb_i2c_initiate_xfer(void *cookie, i2c_addr_t addr, int flags)
180 return i2c_bitbang_initiate_xfer(cookie, addr, flags,
185 radeonfb_i2c_read_byte(void *cookie, uint8_t *valp, int flags)
188 return i2c_bitbang_read_byte(cookie, valp, flags, &radeonfb_i2cbb_ops);
192 radeonfb_i2c_write_byte(void *cookie, uint8_t val, int flags)
195 return i2c_bitbang_write_byte(cookie, val, flags, &radeonfb_i2cbb_ops);