* [PATCH v2 1/2] device property: Add headers to the Driver Core entry in MAINTAINERS
@ 2023-03-27 13:01 Andy Shevchenko
2023-03-27 13:01 ` [PATCH v2 2/2] device property: Remove unused struct net_device forward declaration Andy Shevchenko
2023-03-27 14:45 ` [PATCH v2 1/2] device property: Add headers to the Driver Core entry in MAINTAINERS Rafael J. Wysocki
0 siblings, 2 replies; 4+ messages in thread
From: Andy Shevchenko @ 2023-03-27 13:01 UTC (permalink / raw)
To: Andy Shevchenko, Greg Kroah-Hartman, linux-kernel, linux-acpi
Cc: Daniel Scally, Heikki Krogerus, Sakari Ailus, Rafael J. Wysocki
The header files (fwnode.h and property.h) are part of the device
property API, which in its turn is part of driver core. Add the
missed headers to the corresponding record in the MAINTAINERS database.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
---
v2: new patch
MAINTAINERS | 2 ++
1 file changed, 2 insertions(+)
diff --git a/MAINTAINERS b/MAINTAINERS
index 93fb4e5a2814..aa61d9ede78b 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -6316,7 +6316,9 @@ F: drivers/base/
F: fs/debugfs/
F: fs/sysfs/
F: include/linux/debugfs.h
+F: include/linux/fwnode.h
F: include/linux/kobj*
+F: include/linux/property.h
F: lib/kobj*
DRIVERS FOR OMAP ADAPTIVE VOLTAGE SCALING (AVS)
--
2.40.0.1.gaa8946217a0b
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH v2 2/2] device property: Remove unused struct net_device forward declaration
2023-03-27 13:01 [PATCH v2 1/2] device property: Add headers to the Driver Core entry in MAINTAINERS Andy Shevchenko
@ 2023-03-27 13:01 ` Andy Shevchenko
2023-03-27 14:45 ` Rafael J. Wysocki
2023-03-27 14:45 ` [PATCH v2 1/2] device property: Add headers to the Driver Core entry in MAINTAINERS Rafael J. Wysocki
1 sibling, 1 reply; 4+ messages in thread
From: Andy Shevchenko @ 2023-03-27 13:01 UTC (permalink / raw)
To: Andy Shevchenko, Greg Kroah-Hartman, linux-kernel, linux-acpi
Cc: Daniel Scally, Heikki Krogerus, Sakari Ailus, Rafael J. Wysocki
There is no users in the property.h for the struct net_device.
Remove the latter for good.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
---
v2: no changes (just Cc'ed accordingly)
include/linux/property.h | 1 -
1 file changed, 1 deletion(-)
diff --git a/include/linux/property.h b/include/linux/property.h
index 4a536548606b..59f452198c64 100644
--- a/include/linux/property.h
+++ b/include/linux/property.h
@@ -16,7 +16,6 @@
#include <linux/types.h>
struct device;
-struct net_device;
enum dev_prop_type {
DEV_PROP_U8,
--
2.40.0.1.gaa8946217a0b
^ permalink raw reply related [flat|nested] 4+ messages in thread* Re: [PATCH v2 2/2] device property: Remove unused struct net_device forward declaration
2023-03-27 13:01 ` [PATCH v2 2/2] device property: Remove unused struct net_device forward declaration Andy Shevchenko
@ 2023-03-27 14:45 ` Rafael J. Wysocki
0 siblings, 0 replies; 4+ messages in thread
From: Rafael J. Wysocki @ 2023-03-27 14:45 UTC (permalink / raw)
To: Andy Shevchenko
Cc: Greg Kroah-Hartman, linux-kernel, linux-acpi, Daniel Scally,
Heikki Krogerus, Sakari Ailus, Rafael J. Wysocki
On Mon, Mar 27, 2023 at 3:02 PM Andy Shevchenko
<andriy.shevchenko@linux.intel.com> wrote:
>
> There is no users in the property.h for the struct net_device.
> Remove the latter for good.
>
> Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Acked-by: Rafael J. Wysocki <rafael@kernel.org>
> ---
> v2: no changes (just Cc'ed accordingly)
> include/linux/property.h | 1 -
> 1 file changed, 1 deletion(-)
>
> diff --git a/include/linux/property.h b/include/linux/property.h
> index 4a536548606b..59f452198c64 100644
> --- a/include/linux/property.h
> +++ b/include/linux/property.h
> @@ -16,7 +16,6 @@
> #include <linux/types.h>
>
> struct device;
> -struct net_device;
>
> enum dev_prop_type {
> DEV_PROP_U8,
> --
> 2.40.0.1.gaa8946217a0b
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v2 1/2] device property: Add headers to the Driver Core entry in MAINTAINERS
2023-03-27 13:01 [PATCH v2 1/2] device property: Add headers to the Driver Core entry in MAINTAINERS Andy Shevchenko
2023-03-27 13:01 ` [PATCH v2 2/2] device property: Remove unused struct net_device forward declaration Andy Shevchenko
@ 2023-03-27 14:45 ` Rafael J. Wysocki
1 sibling, 0 replies; 4+ messages in thread
From: Rafael J. Wysocki @ 2023-03-27 14:45 UTC (permalink / raw)
To: Andy Shevchenko
Cc: Greg Kroah-Hartman, linux-kernel, linux-acpi, Daniel Scally,
Heikki Krogerus, Sakari Ailus, Rafael J. Wysocki
On Mon, Mar 27, 2023 at 3:02 PM Andy Shevchenko
<andriy.shevchenko@linux.intel.com> wrote:
>
> The header files (fwnode.h and property.h) are part of the device
> property API, which in its turn is part of driver core. Add the
> missed headers to the corresponding record in the MAINTAINERS database.
>
> Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
> ---
> v2: new patch
> MAINTAINERS | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/MAINTAINERS b/MAINTAINERS
> index 93fb4e5a2814..aa61d9ede78b 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -6316,7 +6316,9 @@ F: drivers/base/
> F: fs/debugfs/
> F: fs/sysfs/
> F: include/linux/debugfs.h
> +F: include/linux/fwnode.h
> F: include/linux/kobj*
> +F: include/linux/property.h
> F: lib/kobj*
Acked-by: Rafael J. Wysocki <rafael@kernel.org>
> DRIVERS FOR OMAP ADAPTIVE VOLTAGE SCALING (AVS)
> --
> 2.40.0.1.gaa8946217a0b
>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2023-03-27 14:46 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-03-27 13:01 [PATCH v2 1/2] device property: Add headers to the Driver Core entry in MAINTAINERS Andy Shevchenko
2023-03-27 13:01 ` [PATCH v2 2/2] device property: Remove unused struct net_device forward declaration Andy Shevchenko
2023-03-27 14:45 ` Rafael J. Wysocki
2023-03-27 14:45 ` [PATCH v2 1/2] device property: Add headers to the Driver Core entry in MAINTAINERS Rafael J. Wysocki
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox