uart
文章平均质量分 70
zdh_12
1
展开
-
struct uart_driver
include/linux/serial_core.h struct uart_driver { struct module *owner; const char *driver_name; const char *dev_name; int major; int原创 2013-07-17 23:52:07 · 784 阅读 · 0 评论 -
struct tty_driver
include/linux/tty_driver.h struct tty_driver { int magic; /* magic number for this structure */ struct kref kref; /* Reference management */ struct cdev cdev; struc原创 2013-07-18 12:17:33 · 871 阅读 · 0 评论 -
module_init(s3c24xx_serial_modinit);
static struct uart_driver s3c24xx_uart_drv = { .owner = THIS_MODULE, .driver_name = "s3c2410_serial", .nr = CONFIG_SERIAL_SAMSUNG_UARTS, .cons = S3C24XX_SER原创 2013-07-17 23:57:52 · 815 阅读 · 0 评论 -
struct kref
include/linux/kref.h struct kref { atomic_t refcount; };原创 2013-07-20 12:15:50 · 686 阅读 · 0 评论