mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] docs: consolidate embedded interfaces
@ 2023-07-25 13:55 Costa Shulyupin
       [not found] ` <CADDUTFx_o+kULEMbZWAECBKb4Fo85c303YiCUmgk50Z=7TSkkw@mail.gmail.com>
  0 siblings, 1 reply; 3+ messages in thread
From: Costa Shulyupin @ 2023-07-25 13:55 UTC (permalink / raw)
  To: Jonathan Corbet, linux-doc, linux-kernel; +Cc: Costa Shulyupin

to make page Subsystems APIs more organized as requested

Signed-off-by: Costa Shulyupin <costa.shul@redhat.com>
---
 Documentation/subsystem-apis.rst | 21 ++++++++++++++-------
 1 file changed, 14 insertions(+), 7 deletions(-)

diff --git a/Documentation/subsystem-apis.rst b/Documentation/subsystem-apis.rst
index 90a0535a932a..7453586114d4 100644
--- a/Documentation/subsystem-apis.rst
+++ b/Documentation/subsystem-apis.rst
@@ -60,20 +60,28 @@ Storage interfaces
    scsi/index
    target/index
 
-**Fixme**: much more organizational work is needed here.
+Embedded interfaces
+-------------------
+
+.. toctree::
+   :maxdepth: 1
+
+   iio/index
+   spi/index
+   i2c/index
+   fpga/index
+   w1/index
+   misc-devices/index
+
+**Fixme**: some organizational work is still needed here.
 
 .. toctree::
    :maxdepth: 1
 
    accounting/index
    cpu-freq/index
-   fpga/index
-   i2c/index
-   iio/index
    leds/index
    pcmcia/index
-   spi/index
-   w1/index
    watchdog/index
    virt/index
    hwmon/index
@@ -83,6 +91,5 @@ Storage interfaces
    bpf/index
    usb/index
    PCI/index
-   misc-devices/index
    peci/index
    wmi/index
-- 
2.41.0


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] docs: consolidate embedded interfaces
       [not found] ` <CADDUTFx_o+kULEMbZWAECBKb4Fo85c303YiCUmgk50Z=7TSkkw@mail.gmail.com>
@ 2023-08-24 15:34   ` Jonathan Corbet
  2023-08-24 16:28     ` Costa Shulyupin
  0 siblings, 1 reply; 3+ messages in thread
From: Jonathan Corbet @ 2023-08-24 15:34 UTC (permalink / raw)
  To: Costa Shulyupin, linux-doc, linux-kernel

Costa Shulyupin <costa.shul@redhat.com> writes:

> soft reminder 

I thought I was clear...I still don't see how this organization makes
sense.  What is "embedded" about misc devices?

Thanks,

jon

> On Tue, 25 Jul 2023 at 16:56, Costa Shulyupin <costa.shul@redhat.com> wrote:
>
>  to make page Subsystems APIs more organized as requested
>
>  Signed-off-by: Costa Shulyupin <costa.shul@redhat.com>
>  ---
>   Documentation/subsystem-apis.rst | 21 ++++++++++++++-------
>   1 file changed, 14 insertions(+), 7 deletions(-)
>
>  diff --git a/Documentation/subsystem-apis.rst b/Documentation/subsystem-apis.rst
>  index 90a0535a932a..7453586114d4 100644
>  --- a/Documentation/subsystem-apis.rst
>  +++ b/Documentation/subsystem-apis.rst
>  @@ -60,20 +60,28 @@ Storage interfaces
>      scsi/index
>      target/index
>
>  -**Fixme**: much more organizational work is needed here.
>  +Embedded interfaces
>  +-------------------
>  +
>  +.. toctree::
>  +   :maxdepth: 1
>  +
>  +   iio/index
>  +   spi/index
>  +   i2c/index
>  +   fpga/index
>  +   w1/index
>  +   misc-devices/index
>  +
>  +**Fixme**: some organizational work is still needed here.
>
>   .. toctree::
>      :maxdepth: 1
>
>      accounting/index
>      cpu-freq/index
>  -   fpga/index
>  -   i2c/index
>  -   iio/index
>      leds/index
>      pcmcia/index
>  -   spi/index
>  -   w1/index
>      watchdog/index
>      virt/index
>      hwmon/index
>  @@ -83,6 +91,5 @@ Storage interfaces
>      bpf/index
>      usb/index
>      PCI/index
>  -   misc-devices/index
>      peci/index
>      wmi/index
>  -- 
>  2.41.0

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] docs: consolidate embedded interfaces
  2023-08-24 15:34   ` Jonathan Corbet
@ 2023-08-24 16:28     ` Costa Shulyupin
  0 siblings, 0 replies; 3+ messages in thread
From: Costa Shulyupin @ 2023-08-24 16:28 UTC (permalink / raw)
  To: Jonathan Corbet; +Cc: linux-doc, linux-kernel

> I thought I was clear...I still don't see how this organization makes
> sense.
The last time you wrote was about the section "peripheral interfaces".
This is the first time I've submitted "embedded interfaces". You
haven't yet reviewed it.

>What is "embedded" about misc devices?
I've reviewed https://docs.kernel.org/misc-devices/ and found
that the most of described drivers are drivers for embedded devices:
- Digital Potentiometers
- combined ambient light and proximity sensor
- I2C EEPROM
- C2 Interface used for in-system programming of micro controllers
- accelerometer
- EEPROM-programmable power-supply
- 950 serial port devices
- Power Management IC
- Xilinx Soft-Decision Forward Error Correction block

Thanks,
Costa

>
> Thanks,
>
> jon
>
> > On Tue, 25 Jul 2023 at 16:56, Costa Shulyupin <costa.shul@redhat.com> wrote:
> >
> >  to make page Subsystems APIs more organized as requested
> >
> >  Signed-off-by: Costa Shulyupin <costa.shul@redhat.com>
> >  ---
> >   Documentation/subsystem-apis.rst | 21 ++++++++++++++-------
> >   1 file changed, 14 insertions(+), 7 deletions(-)
> >
> >  diff --git a/Documentation/subsystem-apis.rst b/Documentation/subsystem-apis.rst
> >  index 90a0535a932a..7453586114d4 100644
> >  --- a/Documentation/subsystem-apis.rst
> >  +++ b/Documentation/subsystem-apis.rst
> >  @@ -60,20 +60,28 @@ Storage interfaces
> >      scsi/index
> >      target/index
> >
> >  -**Fixme**: much more organizational work is needed here.
> >  +Embedded interfaces
> >  +-------------------
> >  +
> >  +.. toctree::
> >  +   :maxdepth: 1
> >  +
> >  +   iio/index
> >  +   spi/index
> >  +   i2c/index
> >  +   fpga/index
> >  +   w1/index
> >  +   misc-devices/index
> >  +
> >  +**Fixme**: some organizational work is still needed here.
> >
> >   .. toctree::
> >      :maxdepth: 1
> >
> >      accounting/index
> >      cpu-freq/index
> >  -   fpga/index
> >  -   i2c/index
> >  -   iio/index
> >      leds/index
> >      pcmcia/index
> >  -   spi/index
> >  -   w1/index
> >      watchdog/index
> >      virt/index
> >      hwmon/index
> >  @@ -83,6 +91,5 @@ Storage interfaces
> >      bpf/index
> >      usb/index
> >      PCI/index
> >  -   misc-devices/index
> >      peci/index
> >      wmi/index
> >  --
> >  2.41.0
>


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2023-08-24 16:31 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-07-25 13:55 [PATCH] docs: consolidate embedded interfaces Costa Shulyupin
     [not found] ` <CADDUTFx_o+kULEMbZWAECBKb4Fo85c303YiCUmgk50Z=7TSkkw@mail.gmail.com>
2023-08-24 15:34   ` Jonathan Corbet
2023-08-24 16:28     ` Costa Shulyupin

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®