Explorar o código

touch: goodix: Replace DEVICE_ATTR() with __ATTR()

For the two nodes goodix_sysfs_update_en_store and
goodix_sysfs_result_show: Since sysfs expects kobj type,
replace DEVICE_ATTR which creates a device, with __ATTR
which creates a kobj.

Change-Id: If571d1c8e18ee4c94f60e7930b9e8ed886e6402e
Signed-off-by: Rohith Iyer <[email protected]>
Rohith Iyer hai 1 ano
pai
achega
bdc9f8a9b7
Modificáronse 1 ficheiros con 8 adicións e 6 borrados
  1. 8 6
      goodix_berlin_driver/goodix_brl_fwupdate.c

+ 8 - 6
goodix_berlin_driver/goodix_brl_fwupdate.c

@@ -997,7 +997,7 @@ err_fw_prepare:
  *       '6'[110] update in unblocking mode with fwdata from request
  */
 static ssize_t goodix_sysfs_update_en_store(
-		struct device *dev, struct device_attribute *attr,
+		struct kobject *kobj, struct kobj_attribute *attr,
 		const char *buf, size_t count)
 {
 	int ret = 0;
@@ -1066,7 +1066,7 @@ static ssize_t goodix_sysfs_fwimage_store(struct file *file,
 
 /* return fw_update result */
 static ssize_t goodix_sysfs_result_show(
-		struct device *dev, struct device_attribute *attr,
+		struct kobject *kobj, struct kobj_attribute *attr,
 		char *buf)
 {
 	struct fw_update_ctrl *fw_ctrl = &goodix_fw_update_ctrl;
@@ -1101,12 +1101,14 @@ static ssize_t goodix_sysfs_result_show(
 	return r;
 }
 
-static DEVICE_ATTR(update_en, 0220, NULL, goodix_sysfs_update_en_store);
-static DEVICE_ATTR(result, 0664, goodix_sysfs_result_show, NULL);
+static struct kobj_attribute goodix_sysfs_update =
+	__ATTR(update_en, 0220, NULL, goodix_sysfs_update_en_store);
+static struct kobj_attribute goodix_sysfs_result =
+	__ATTR(result, 0664, goodix_sysfs_result_show, NULL);
 
 static struct attribute *goodix_fwu_attrs[] = {
-	&dev_attr_update_en.attr,
-	&dev_attr_result.attr
+	&goodix_sysfs_update.attr,
+	&goodix_sysfs_result.attr
 };
 
 static int goodix_fw_sysfs_init(struct goodix_ts_core *core_data,