From: Hans de Goede <hdegoede@redhat.com>
To: Vegard Nossum <vegard.nossum@oracle.com>,
Jonathan Corbet <corbet@lwn.net>,
Jaroslav Kysela <perex@perex.cz>,
Stuart Hayes <stuart.w.hayes@gmail.com>
Cc: linux-doc@vger.kernel.org, linux-kernel@vger.kernel.org,
platform-driver-x86@vger.kernel.org
Subject: Re: [PATCH 2/2] Documentation: move driver-api/dcdbas to userspace-api/
Date: Thu, 21 Dec 2023 14:01:02 +0100 [thread overview]
Message-ID: <7c77b863-95c9-44b7-a039-19e9fd5f690b@redhat.com> (raw)
In-Reply-To: <20231221124816.2978000-3-vegard.nossum@oracle.com>
Hi,
On 12/21/23 13:48, Vegard Nossum wrote:
> This file documents a sysfs interface that is intended for systems
> management software. It does NOT document any kind of kernel driver
> API. It is also not meant to be used directly by system administrators
> or users.
>
> Cc: Stuart Hayes <stuart.w.hayes@gmail.com>
> Cc: platform-driver-x86@vger.kernel.org
> Signed-off-by: Vegard Nossum <vegard.nossum@oracle.com>
Thanks, patch looks good to me. Here is my ack
for merging the drivers/platform/x86/dell/ bits through
the Documentation tree:
Acked-by: Hans de Goede <hdegoede@redhat.com>
Regards,
Hans
> ---
> Documentation/driver-api/index.rst | 1 -
> Documentation/{driver-api => userspace-api}/dcdbas.rst | 0
> Documentation/userspace-api/index.rst | 1 +
> MAINTAINERS | 2 +-
> drivers/platform/x86/dell/Kconfig | 2 +-
> drivers/platform/x86/dell/dcdbas.c | 2 +-
> 6 files changed, 4 insertions(+), 4 deletions(-)
> rename Documentation/{driver-api => userspace-api}/dcdbas.rst (100%)
>
> diff --git a/Documentation/driver-api/index.rst b/Documentation/driver-api/index.rst
> index b1b82ac1063b..b38f81836118 100644
> --- a/Documentation/driver-api/index.rst
> +++ b/Documentation/driver-api/index.rst
> @@ -78,7 +78,6 @@ available subsections can be seen below.
> backlight/lp855x-driver.rst
> connector
> console
> - dcdbas
> eisa
> isa
> io-mapping
> diff --git a/Documentation/driver-api/dcdbas.rst b/Documentation/userspace-api/dcdbas.rst
> similarity index 100%
> rename from Documentation/driver-api/dcdbas.rst
> rename to Documentation/userspace-api/dcdbas.rst
> diff --git a/Documentation/userspace-api/index.rst b/Documentation/userspace-api/index.rst
> index 277b7a40ca91..74bc0716432e 100644
> --- a/Documentation/userspace-api/index.rst
> +++ b/Documentation/userspace-api/index.rst
> @@ -32,6 +32,7 @@ place where this information is gathered.
> futex2
> tee
> isapnp
> + dcdbas
>
> .. only:: subproject and html
>
> diff --git a/MAINTAINERS b/MAINTAINERS
> index 7b6d2dbe4f1d..aa9c4c7ebe71 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -5901,7 +5901,7 @@ DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
> M: Stuart Hayes <stuart.w.hayes@gmail.com>
> L: platform-driver-x86@vger.kernel.org
> S: Maintained
> -F: Documentation/driver-api/dcdbas.rst
> +F: Documentation/userspace-api/dcdbas.rst
> F: drivers/platform/x86/dell/dcdbas.*
>
> DELL WMI DDV DRIVER
> diff --git a/drivers/platform/x86/dell/Kconfig b/drivers/platform/x86/dell/Kconfig
> index bdd78076b1d7..e712df67fa6b 100644
> --- a/drivers/platform/x86/dell/Kconfig
> +++ b/drivers/platform/x86/dell/Kconfig
> @@ -37,7 +37,7 @@ config DCDBAS
> Interrupts (SMIs) and Host Control Actions (system power cycle or
> power off after OS shutdown) on certain Dell systems.
>
> - See <file:Documentation/driver-api/dcdbas.rst> for more details on the driver
> + See <file:Documentation/userspace-api/dcdbas.rst> for more details on the driver
> and the Dell systems on which Dell systems management software makes
> use of this driver.
>
> diff --git a/drivers/platform/x86/dell/dcdbas.c b/drivers/platform/x86/dell/dcdbas.c
> index 76787369d7fa..a60e35056387 100644
> --- a/drivers/platform/x86/dell/dcdbas.c
> +++ b/drivers/platform/x86/dell/dcdbas.c
> @@ -7,7 +7,7 @@
> * and Host Control Actions (power cycle or power off after OS shutdown) on
> * Dell systems.
> *
> - * See Documentation/driver-api/dcdbas.rst for more information.
> + * See Documentation/userspace-api/dcdbas.rst for more information.
> *
> * Copyright (C) 1995-2006 Dell Inc.
> */
next prev parent reply other threads:[~2023-12-21 13:01 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-12-21 12:48 [PATCH 0/2] Move driver-api/{dcdbas,isapnp} " Vegard Nossum
2023-12-21 12:48 ` [PATCH 1/2] Documentation: move driver-api/isapnp " Vegard Nossum
2023-12-22 19:11 ` Randy Dunlap
2023-12-21 12:48 ` [PATCH 2/2] Documentation: move driver-api/dcdbas " Vegard Nossum
2023-12-21 13:01 ` Hans de Goede [this message]
2023-12-22 19:11 ` Randy Dunlap
2024-01-03 21:19 ` [PATCH 0/2] Move driver-api/{dcdbas,isapnp} " Jonathan Corbet
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=7c77b863-95c9-44b7-a039-19e9fd5f690b@redhat.com \
--to=hdegoede@redhat.com \
--cc=corbet@lwn.net \
--cc=linux-doc@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=perex@perex.cz \
--cc=platform-driver-x86@vger.kernel.org \
--cc=stuart.w.hayes@gmail.com \
--cc=vegard.nossum@oracle.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®