Merge partner/android-gs-pixel-mainline into partner/android-gs-pixel-5.10-stabilization

* partner/android-gs-pixel-mainline:
  fingerprint: fpc: Fix the function paramter or member warnings

Signed-off-by: Mark Salyzyn <salyzyn@google.com>
Bug: 176210697
Change-Id: Idc658982cf44ae6ab7930173d06a5e9c110682b9
diff --git a/fpc1020_platform_tee.c b/fpc1020_platform_tee.c
index ba64cfd..a7a8338 100644
--- a/fpc1020_platform_tee.c
+++ b/fpc1020_platform_tee.c
@@ -141,6 +141,11 @@
  * This is disabled in platform variant of this driver but kept for
  * backwards compatibility. Only prints a debug print that it is
  * disabled.
+ *
+ * @dev: fp device structure
+ * @attr: device attribute
+ * @buf: buffer that being passed to this driver
+ * @count: count
  */
 static ssize_t clk_enable_set(struct device *dev,
 	struct device_attribute *attr,
@@ -236,6 +241,8 @@
  * enable/disable regulators, and reset line, all to set the sensor in a
  * correct power on or off state "electrical" wise.
  *
+ * @fpc1020: Data structure of fpc1020 driver
+ * @enable: Enable/disable regulators
  * @see  device_prepare_set
  * @note This function will not send any commands to the sensor it will only
  *       control it "electrically".
@@ -294,6 +301,10 @@
  * sysfs node to enable/disable (power up/power down) the touch sensor
  *
  * @see device_prepare
+ * @dev: fp device structure
+ * @attr: device attribute
+ * @buf: buffer that being passed to this driver
+ * @count: count
  */
 static ssize_t device_prepare_set(struct device *dev,
 	struct device_attribute *attr, const char *buf, size_t count)
@@ -315,7 +326,13 @@
 /**
  * sysfs node for controlling whether the driver is allowed
  * to wake up the platform on interrupt.
+ *
+ * @dev: fp device structure
+ * @attr: device attribute
+ * @buf: buffer that being passed to this driver
+ * @count: count
  */
+
 static ssize_t wakeup_enable_set(struct device *dev,
 	struct device_attribute *attr, const char *buf, size_t count)
 {
@@ -338,7 +355,12 @@
 /**
  * sysf node to check the interrupt status of the sensor, the interrupt
  * handler should perform sysf_notify to allow userland to poll the node.
+ *
+ * @dev: fp device structure
+ * @attr: device attribute
+ * @buf: buffer that being passed to this driver
  */
+
 static ssize_t irq_get(struct device *dev,
 	struct device_attribute *attr,
 	char *buf)
@@ -352,7 +374,13 @@
 /**
  * writing to the irq node will just drop a printk message
  * and return success, used for latency measurement.
+ *
+ * @dev: fp device structure
+ * @attr: device attribute
+ * @buf: buffer that being passed to this driver
+ * @count: count
  */
+
 static ssize_t irq_ack(struct device *dev,
 	struct device_attribute *attr,
 	const char *buf, size_t count)