From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (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 379EF1E898 for ; Sun, 18 Feb 2024 17:33:42 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1708277623; cv=none; b=jUVsH0Lfilz+dVK9tUmwkTdTIkHjexL7Xuaq3W98uwfbrooTGat9wFRrnyupMbe6tO3cJDwVkTw/J2kcG656ngOVgPJaqqgCfSJWOx/Jv1CdAmrQrk3UXpjjqOdnCAG+uLcmIEiuww+iSAJy1GheXr8ldzjL2diWuKYf05C5EnY= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1708277623; c=relaxed/simple; bh=2EeMz1RG7098w2PrP8N7GaoxBeqqfms4se11h+YFMxA=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=pFMSPo5HrDLmUMrvhWb0XiqxcfE1s9nv7l55NR6l6FTs0w6emS08WG8NjbwAGyow0hDJU2SyM11xGqQGQhcDzEuPJ/Pc4x8Q2/jSXMOTrTQr4xo6XCNkqWB6MJC5nB2YdWKhGRaDbuMHd5330GWtRZQ3MU+cFle7V/jgUNhFVv0= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=OZ0EORyO; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="OZ0EORyO" Received: by smtp.kernel.org (Postfix) with ESMTPSA id B6BC9C433F1; Sun, 18 Feb 2024 17:33:41 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1708277622; bh=2EeMz1RG7098w2PrP8N7GaoxBeqqfms4se11h+YFMxA=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=OZ0EORyO2KQP+mNnTHniN8ubp8dcUr+KuZOW+TXobJMaTgn2ygpiOpVtKH5jaeTvV eZ9QmKCnJcWNZVSKojf5kMNEcPmx2wsIQeMYZxdbYBUBQpkH162q91eda2WuHCjpg3 BgvgPNZEDqffgHBywr0boV1+QWsg4ma3TZ3fzJLnCAVrPL1ynMFlT1fVk7SVqNrf+w ZIWZ6m1l5vrPSc6KZTvpTRiazqN5khDHKQ3eqNleUZ2mcP1B1bCvK6W7wuk9DTCtnp kBk04jQUW6cGtYpF3JkXElV7Drzx8uvhvU6b1CzTXLwR1RNZCtLB1gGrJdLyeDezXV qORqIC8FD2rNw== From: Jonathan Cameron To: linux-iio@vger.kernel.org, Andy Shevchenko Cc: Jonathan Cameron Subject: [PATCH 5/8] iio: accel: adxl372: Switch from linux/of.h to linux/mod_devicetable.h Date: Sun, 18 Feb 2024 17:33:20 +0000 Message-ID: <20240218173323.1023703-6-jic23@kernel.org> X-Mailer: git-send-email 2.43.2 In-Reply-To: <20240218173323.1023703-1-jic23@kernel.org> References: <20240218173323.1023703-1-jic23@kernel.org> Precedence: bulk X-Mailing-List: linux-iio@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit From: Jonathan Cameron The only of specific definition used is of_device_id table and that is found in mod_devicetable.h not of.h Signed-off-by: Jonathan Cameron --- drivers/iio/accel/adxl372_spi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/iio/accel/adxl372_spi.c b/drivers/iio/accel/adxl372_spi.c index 75a88f16c6c9..787699773f96 100644 --- a/drivers/iio/accel/adxl372_spi.c +++ b/drivers/iio/accel/adxl372_spi.c @@ -6,8 +6,8 @@ */ #include +#include #include -#include #include #include "adxl372.h" -- 2.43.2