sysfs_create_group 註冊 attribute
參考kx122.c 中 sysfs 註冊 device_attribute kx122_sysfs_get_enable 實作成 _show() kx122_sysfs_set_enable 實作成 _store() static struct device_attribute dev_attr_accel_enable = __ATTR(enable, S_IRUGO | S_IWUSR, kx122_sysfs_get_enable, kx122_sysfs_set_enable); static struct device_attribute dev_attr_accel_delay = __ATTR(delay, S_IRUGO | S_IWUSR, kx122_sysfs_get_delay, kx122_sysfs_set_delay); static struct device_attribute dev_attr_reg_read = __ATTR(reg_read, S_IWUSR, NULL, kx122_sysfs_reg_read); static struct device_attribute dev_attr_reg_write = __ATTR(reg_write, S_IWUSR, NULL, kx122_sysfs_reg_write); static struct attribute *kx122_sysfs_attrs[] = { &dev_attr_accel_enable.attr, &dev_attr_acce...