From patchwork Thu Aug 18 05:51:56 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sakari Ailus X-Patchwork-Id: 598544 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 EC655C00140 for ; Thu, 18 Aug 2022 05:52:01 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S240770AbiHRFwA (ORCPT ); Thu, 18 Aug 2022 01:52:00 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:40788 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S240278AbiHRFwA (ORCPT ); Thu, 18 Aug 2022 01:52:00 -0400 Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 7F4218D3FF for ; Wed, 17 Aug 2022 22:51:59 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1660801919; x=1692337919; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=asLX2sOvbrl8mZI3P167CjDFKIM3GosI4/UOYSp+kGo=; b=BqS24zssT1CCm2TXgiaBo/cp+6HpbIzbNoVRQHSshnsJyi5UZ3Bon5od /Y0JaGLRBlIyqCPCBEvwSLN8qSXAvx57n8725PInUki4qolKFpjFa+Yxc hM+/1je0euw/rrmC3DLSEaW4a/YcZah7pqlOCMRrD4AAwrhz7sciFmT2Z 8p/DQWcVMcI2AMTk2r8gRz+/yEctuvrYrJhPE+WOl9s4xpsMd+0TqY0Ro 7zGizQgpqmh90wbP3zoX2deTCHSk932Nebdmga0wcQZA2zrwQlfGSDh3G Yaz5qlsyo+juAIm/PK3UwXvj4BPaVx1ZLB2GJQJZZxqKxpxm1ZVjx447n g==; X-IronPort-AV: E=McAfee;i="6500,9779,10442"; a="318689854" X-IronPort-AV: E=Sophos;i="5.93,245,1654585200"; d="scan'208";a="318689854" Received: from orsmga004.jf.intel.com ([10.7.209.38]) by fmsmga101.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Aug 2022 22:51:59 -0700 X-IronPort-AV: E=Sophos;i="5.93,245,1654585200"; d="scan'208";a="733934034" Received: from punajuuri.fi.intel.com (HELO paasikivi.fi.intel.com) ([10.237.72.43]) by orsmga004-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Aug 2022 22:51:58 -0700 Received: from punajuuri.localdomain (punajuuri.localdomain [192.168.240.130]) by paasikivi.fi.intel.com (Postfix) with ESMTP id DE6A620212; Thu, 18 Aug 2022 08:51:55 +0300 (EEST) Received: from sailus by punajuuri.localdomain with local (Exim 4.94.2) (envelope-from ) id 1oOYRg-0001x3-Ek; Thu, 18 Aug 2022 08:51:56 +0300 From: Sakari Ailus To: linux-acpi@vger.kernel.org Cc: rafael@kernel.org Subject: [PATCH 1/1] ACPI: Fix acpi_dev_state_d0() documentation Date: Thu, 18 Aug 2022 08:51:56 +0300 Message-Id: <20220818055156.7456-1-sakari.ailus@linux.intel.com> X-Mailer: git-send-email 2.30.2 MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-acpi@vger.kernel.org The documentation for acpi_dev_state_d0() referred to Documentation/firmware-guide/acpi/low-power-probe.rst that does not exist, the right file name is Documentation/firmware-guide/acpi/non-d0-probe.rst. Fix this. Reported-by: kernel test robot Signed-off-by: Sakari Ailus --- drivers/acpi/device_pm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/acpi/device_pm.c b/drivers/acpi/device_pm.c index 130b5f4a50a3d..fc5ffdb544cae 100644 --- a/drivers/acpi/device_pm.c +++ b/drivers/acpi/device_pm.c @@ -1438,7 +1438,7 @@ EXPORT_SYMBOL_GPL(acpi_storage_d3); * not valid to ask for the ACPI power state of the device in that time frame. * * This function is intended to be used in a driver's probe or remove - * function. See Documentation/firmware-guide/acpi/low-power-probe.rst for + * function. See Documentation/firmware-guide/acpi/non-d0-probe.rst for * more information. */ bool acpi_dev_state_d0(struct device *dev)