Searched defs:ld (Results 1 - 2 of 2) sorted by relevance

/include/linux/
H A Dlcd.h84 int (*reset)(struct lcd_device *ld);
87 int (*power_on)(struct lcd_device *ld, int enable);
105 static inline void lcd_set_power(struct lcd_device *ld, int power) argument
107 mutex_lock(&ld->update_lock);
108 if (ld->ops && ld->ops->set_power)
109 ld->ops->set_power(ld, power);
110 mutex_unlock(&ld->update_lock);
118 extern void lcd_device_unregister(struct lcd_device *ld);
[all...]
H A Dtty.h570 static inline int tty_ldisc_receive_buf(struct tty_ldisc *ld, unsigned char *p, argument
573 if (ld->ops->receive_buf2)
574 count = ld->ops->receive_buf2(ld->tty, p, f, count);
576 count = min_t(int, count, ld->tty->receive_room);
578 ld->ops->receive_buf(ld->tty, p, f, count);

Completed in 61 milliseconds