From patchwork Sun Feb 11 20:14:34 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andy Shevchenko X-Patchwork-Id: 13552606 Received: from fgw23-7.mail.saunalahti.fi (fgw23-7.mail.saunalahti.fi [62.142.5.84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 3C7925DF21 for ; Sun, 11 Feb 2024 20:15:34 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=62.142.5.84 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1707682535; cv=none; b=d5t8JkHPA8WoyD4GhGo+8oeXwYd8kO9c5z9BS2Mhdb6oC+sZE3aDRtXvL2ZkyU02g8jwqid0PTtZ0BuKKeH6RFpzGoTem/kKZsIUuyeEZK96vgNjdzrUylNCA0jBMUnqpMxpzMTI17Y8H5uQYYfrSKsZ2cKAcBeF+CPpUnbo4+Q= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1707682535; c=relaxed/simple; bh=5XIv07/wKtmBMOxCIJedyIk4CrP17JzQEnwYP4BIfKU=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=P1S31RoryHsvUVfLH+WcUFPwOTwNKGCSVLKDdI+G0sQ/6Oaa7a1Fj+Ozw+6aEOzwybkpRZJd03rBIup195agSiA8WgJpsKSlAP+yL9qZqNweZIvRZKSjOyhZhm3K2Z9u0XuAsU1aiPGf804f/i4yFSXYqo6qxecymnQjdg3DV0c= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=fail (p=none dis=none) header.from=gmail.com; spf=fail smtp.mailfrom=gmail.com; arc=none smtp.client-ip=62.142.5.84 Authentication-Results: smtp.subspace.kernel.org; dmarc=fail (p=none dis=none) header.from=gmail.com Authentication-Results: smtp.subspace.kernel.org; spf=fail smtp.mailfrom=gmail.com Received: from localhost (88-113-26-217.elisa-laajakaista.fi [88.113.26.217]) by fgw23.mail.saunalahti.fi (Halon) with ESMTP id 4e677400-c91a-11ee-b972-005056bdfda7; Sun, 11 Feb 2024 22:15:32 +0200 (EET) From: andy.shevchenko@gmail.com To: Andy Shevchenko , Marius Hoch , linux-iio@vger.kernel.org, linux-kernel@vger.kernel.org Cc: Jonathan Cameron , Lars-Peter Clausen Subject: [PATCH v1 3/3] iio: st_sensors: lsm9ds0: Use common style for terminator in ID tables Date: Sun, 11 Feb 2024 22:14:34 +0200 Message-ID: <20240211201526.1518165-4-andy.shevchenko@gmail.com> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20240211201526.1518165-1-andy.shevchenko@gmail.com> References: <20240211201526.1518165-1-andy.shevchenko@gmail.com> Precedence: bulk X-Mailing-List: linux-iio@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Use common style for a terminator entry in the ID tables. Signed-off-by: Andy Shevchenko --- drivers/iio/imu/st_lsm9ds0/st_lsm9ds0_i2c.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/iio/imu/st_lsm9ds0/st_lsm9ds0_i2c.c b/drivers/iio/imu/st_lsm9ds0/st_lsm9ds0_i2c.c index ab8504286ba4..d03cec3b24fe 100644 --- a/drivers/iio/imu/st_lsm9ds0/st_lsm9ds0_i2c.c +++ b/drivers/iio/imu/st_lsm9ds0/st_lsm9ds0_i2c.c @@ -41,7 +41,7 @@ MODULE_DEVICE_TABLE(i2c, st_lsm9ds0_id_table); static const struct acpi_device_id st_lsm9ds0_acpi_match[] = { {"ACCL0001", (kernel_ulong_t)LSM303D_IMU_DEV_NAME}, - { }, + {} }; MODULE_DEVICE_TABLE(acpi, st_lsm9ds0_acpi_match);