From patchwork Fri Aug 23 22:07:18 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andy Shevchenko X-Patchwork-Id: 13776076 Received: from fgw22-7.mail.saunalahti.fi (fgw22-7.mail.saunalahti.fi [62.142.5.83]) (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 A45361C8710 for ; Fri, 23 Aug 2024 22:07:27 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=62.142.5.83 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1724450849; cv=none; b=XZrnTOJqEu9JGqvMSd3y7nHBeyiljYh1iFgTnaqVF8XzzW+9BqmC70QPwpHyKsz8G+KDIbi4P2VDYZWogxGGmPQAIxAp5txcLYz86fNwHAsR1FWhJHEuWWp5+alafADBwQMwS7sroMaSrGwwL5T5cCGFSEh8UvAxIpyY2I3zFNY= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1724450849; c=relaxed/simple; bh=3hw+CZqza9xuGv8IMOyhBwEUy4qPvlzZcseXAnIfo9g=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=WT7oHRJLlUWtQkSyXIlNK+bZ+TrisPLmuAmBwK732iPQFuiTXC4FW/Rlih/mKUxRDy9ZaXQW+CmgJ0MtKY+pg9oy2TYn4imP6HL5WZAvLcakA1f77jVLuzbt7wpK18JzuzcY2EJUSlSbcf9lGKya4ZHOXBlbtRA6hixFxhUkzaw= 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.83 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-25-87.elisa-laajakaista.fi [88.113.25.87]) by fgw23.mail.saunalahti.fi (Halon) with ESMTP id 10c4aa32-619c-11ef-8232-005056bdfda7; Sat, 24 Aug 2024 01:07:19 +0300 (EEST) From: Andy Shevchenko To: =?utf-8?q?Uwe_Kleine-K=C3=B6nig?= , linux-iio@vger.kernel.org, chrome-platform@lists.linux.dev, linux-kernel@vger.kernel.org Cc: Jonathan Cameron , Lars-Peter Clausen , Benson Leung , Guenter Roeck , Andy Shevchenko Subject: [PATCH v1 1/1] iio: proximity: cros_ec_mkbp_proximity: Switch to including mod_devicetable.h for struct of_device_id definition Date: Sat, 24 Aug 2024 01:07:18 +0300 Message-ID: <20240823220718.743596-1-andy.shevchenko@gmail.com> X-Mailer: git-send-email 2.46.0 Precedence: bulk X-Mailing-List: linux-iio@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 of.h was only included for this definition, so include the correct header instead. Signed-off-by: Andy Shevchenko --- drivers/iio/proximity/cros_ec_mkbp_proximity.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/iio/proximity/cros_ec_mkbp_proximity.c b/drivers/iio/proximity/cros_ec_mkbp_proximity.c index 4df506bb8b38..cff57d851762 100644 --- a/drivers/iio/proximity/cros_ec_mkbp_proximity.c +++ b/drivers/iio/proximity/cros_ec_mkbp_proximity.c @@ -6,10 +6,10 @@ */ #include +#include #include #include #include -#include #include #include #include