Lines Matching defs:matrix
530 struct iio_mount_matrix *matrix)
532 *matrix = iio_mount_idmatrix;
533 dev_info(dev, "mounting matrix not found: using identity...\n");
557 * iio_read_mount_matrix() - retrieve iio device mounting matrix from
558 * device "mount-matrix" property
559 * @dev: device the mounting matrix property is assigned to
560 * @propname: device specific mounting matrix property name
561 * @matrix: where to store retrieved matrix
563 * If device is assigned no mounting matrix property, a default 3x3 identity
564 * matrix will be filled in.
569 struct iio_mount_matrix *matrix)
575 matrix->rotation, len);
580 /* Invalid number of matrix entries. */
584 /* Invalid matrix declaration format. */
588 return iio_setup_mount_idmatrix(dev, matrix);