From patchwork Tue Aug 8 16:41:37 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andy Shevchenko X-Patchwork-Id: 13346886 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id C94C8C001B0 for ; Tue, 8 Aug 2023 19:17:32 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S235998AbjHHTRb (ORCPT ); Tue, 8 Aug 2023 15:17:31 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:54492 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233295AbjHHTQT (ORCPT ); Tue, 8 Aug 2023 15:16:19 -0400 Received: from mgamail.intel.com (mgamail.intel.com [192.55.52.120]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id C73EA3A6B7; Tue, 8 Aug 2023 09:39:33 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1691512773; x=1723048773; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=/xmEuNUa1F857kBIWG/rzmWse5hqaes6dViG2uDIUl0=; b=J3jBeuW9rm0HpbuAS/TBiGYNp6NaWkepve69CycYiImqgbars7sYNCjq TuFsmWQO0lRWo0i89R9BfVFMrjUIG+duZVMhlVv3mgNYMeW7NLHaZxbUZ Rgqbwqvgn8OwA+VfPJFFeNSf4f/3vDOxJWIeQfr99GIx1M2alIKmikSz6 64ZNvc9JDwi0dxDZ201vyG7GdmsJGIq5mqjsP3B+DLZxOlBdh0B1afYQw UUx0mDcN4q6/HE8B7Xi3q1cOZ5mXxrImyVdAG8g/ROXj8HOtAsbwrbWV4 6WzZzRJ4/YXi5x1OSs9U2B879fr9r+p9wNMohoIQn8GFnqKttTCK56GpH g==; X-IronPort-AV: E=McAfee;i="6600,9927,10795"; a="369777246" X-IronPort-AV: E=Sophos;i="6.01,156,1684825200"; d="scan'208";a="369777246" Received: from fmsmga007.fm.intel.com ([10.253.24.52]) by fmsmga104.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 08 Aug 2023 09:38:35 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10795"; a="734623035" X-IronPort-AV: E=Sophos;i="6.01,156,1684825200"; d="scan'208";a="734623035" Received: from black.fi.intel.com ([10.237.72.28]) by fmsmga007.fm.intel.com with ESMTP; 08 Aug 2023 09:38:32 -0700 Received: by black.fi.intel.com (Postfix, from userid 1003) id 5A8B515C; Tue, 8 Aug 2023 19:41:41 +0300 (EEST) From: Andy Shevchenko To: Andy Shevchenko , linux-iio@vger.kernel.org, linux-stm32@st-md-mailman.stormreply.com, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org Cc: Jonathan Cameron , Lars-Peter Clausen , Maxime Coquelin , Alexandre Torgue Subject: [PATCH v1 1/1] iio: dac: stm32-dac: Use correct header(s) instead of string_helpers.h Date: Tue, 8 Aug 2023 19:41:37 +0300 Message-Id: <20230808164137.66663-1-andriy.shevchenko@linux.intel.com> X-Mailer: git-send-email 2.40.0.1.gaa8946217a0b MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-iio@vger.kernel.org There is nothing from string_helpers.h used in the driver, correct the header inclusion block accordingly. Signed-off-by: Andy Shevchenko --- drivers/iio/dac/stm32-dac.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/iio/dac/stm32-dac.c b/drivers/iio/dac/stm32-dac.c index 15eb44075107..3cab28c7ee3b 100644 --- a/drivers/iio/dac/stm32-dac.c +++ b/drivers/iio/dac/stm32-dac.c @@ -11,12 +11,13 @@ #include #include #include +#include #include #include #include #include #include -#include +#include #include "stm32-dac-core.h"