• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/input/touchscreen/

Lines Matching refs:object

335 	/* to map object and message */
542 struct qt602240_object *object;
546 object = data->object_table + i;
547 if (object->type == type)
548 return object;
551 dev_err(&data->client->dev, "Invalid object type\n");
558 struct qt602240_object *object;
561 object = qt602240_get_object(data, QT602240_GEN_MESSAGE);
562 if (!object)
565 reg = object->start_address;
573 struct qt602240_object *object;
576 object = qt602240_get_object(data, type);
577 if (!object)
580 reg = object->start_address;
587 struct qt602240_object *object;
590 object = qt602240_get_object(data, type);
591 if (!object)
594 reg = object->start_address;
681 struct qt602240_object *object;
697 object = qt602240_get_object(data, QT602240_TOUCH_MULTI);
698 if (!object)
701 max_reportid = object->max_reportid;
702 min_reportid = max_reportid - object->num_report_ids + 1;
717 struct qt602240_object *object;
740 object = data->object_table + i;
742 if (!qt602240_object_writable(object->type))
745 for (j = 0; j < object->size + 1; j++)
746 qt602240_write_object(data, object->type, j,
749 index += object->size + 1;
937 struct qt602240_object *object = data->object_table + i;
944 object->type = buf[0];
945 object->start_address = (buf[2] << 8) | buf[1];
946 object->size = buf[3];
947 object->instances = buf[4];
948 object->num_report_ids = buf[5];
950 if (object->num_report_ids) {
951 reportid += object->num_report_ids *
952 (object->instances + 1);
953 object->max_reportid = reportid;
979 /* Get object table information */
1039 struct qt602240_object *object;
1046 object = data->object_table + i;
1050 i + 1, object->type);
1052 if (!qt602240_object_readable(object->type)) {
1057 for (j = 0; j < object->size + 1; j++) {
1059 object->type, j, &val);
1185 static DEVICE_ATTR(object, 0444, qt602240_object_show, NULL);