From patchwork Tue Nov 22 13:36:00 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andy Shevchenko X-Patchwork-Id: 627536 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 74359C433FE for ; Tue, 22 Nov 2022 13:35:46 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232638AbiKVNfo (ORCPT ); Tue, 22 Nov 2022 08:35:44 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:34818 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231475AbiKVNfn (ORCPT ); Tue, 22 Nov 2022 08:35:43 -0500 Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 74CD351C1D; Tue, 22 Nov 2022 05:35:41 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1669124141; x=1700660141; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=E2o75a0dR2r76pyJZbgE/pHYuyelnQX13nzZY5Ng3hk=; b=fwvfdyQUp6NJPUHdjzezC7gOeMznS51dLKg5c1q0X/M2DmGZPvYccSK8 xtxGX2nC7nKZjn8RmlNZ9qiOWsbaA8TmKvICNhTUUwjAVEbrbdEKzpJC9 Ezgu2K7PHFrBdYD72Ng+ewavoyCAl34GnuicXfV6NexF16/pdO4p4ItOv g8yBGdCNfuUDNASVrdkANCft7mg9TMUCBhQ+uvPGHcT0qFLMTAUq0nX0k 5I7QEvtSvXeIs6sORm8oryUJNCfFDzFerv7X7yk8lyaQ92a6wTIYh1QEj IoPKwNNYIAMgLax52k5R5nNaxKqMPh1IyxIB3ZUqP48Z+KhfT1x/xIfMY g==; X-IronPort-AV: E=McAfee;i="6500,9779,10538"; a="311442547" X-IronPort-AV: E=Sophos;i="5.96,184,1665471600"; d="scan'208";a="311442547" Received: from orsmga008.jf.intel.com ([10.7.209.65]) by fmsmga102.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 22 Nov 2022 05:35:41 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6500,9779,10538"; a="672484470" X-IronPort-AV: E=Sophos;i="5.96,184,1665471600"; d="scan'208";a="672484470" Received: from black.fi.intel.com ([10.237.72.28]) by orsmga008.jf.intel.com with ESMTP; 22 Nov 2022 05:35:38 -0800 Received: by black.fi.intel.com (Postfix, from userid 1003) id 8DC4A12B; Tue, 22 Nov 2022 15:36:04 +0200 (EET) From: Andy Shevchenko To: Andy Shevchenko , Heikki Krogerus , linux-acpi@vger.kernel.org, linux-kernel@vger.kernel.org Cc: Daniel Scally , Sakari Ailus , Greg Kroah-Hartman , "Rafael J. Wysocki" Subject: [PATCH v4 4/4] device property: Add a blank line in Kconfig of tests Date: Tue, 22 Nov 2022 15:36:00 +0200 Message-Id: <20221122133600.49897-4-andriy.shevchenko@linux.intel.com> X-Mailer: git-send-email 2.35.1 In-Reply-To: <20221122133600.49897-1-andriy.shevchenko@linux.intel.com> References: <20221122133600.49897-1-andriy.shevchenko@linux.intel.com> MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-acpi@vger.kernel.org Seems the blank line to separate entries in Kconfig was missing. Add it. Signed-off-by: Andy Shevchenko Acked-by: Heikki Krogerus --- v4: added tag (Heikki) v3: new patch drivers/base/test/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/base/test/Kconfig b/drivers/base/test/Kconfig index 2f3fa31a948e..610a1ba7a467 100644 --- a/drivers/base/test/Kconfig +++ b/drivers/base/test/Kconfig @@ -8,6 +8,7 @@ config TEST_ASYNC_DRIVER_PROBE The module name will be test_async_driver_probe.ko If unsure say N. + config DRIVER_PE_KUNIT_TEST bool "KUnit Tests for property entry API" if !KUNIT_ALL_TESTS depends on KUNIT=y