diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2023-03-02 17:12:12 +0100 |
---|---|---|
committer | Rafael J. Wysocki <rjw@rjwysocki.net> | 2023-03-07 14:09:49 +0100 |
commit | c29b97725c91add5021a3257c14ad1ed32eedf76 (patch) | |
tree | 356e375be689eb8477fc25f97f4dac8042ddd098 /Documentation/firmware-guide | |
parent | Linux 6.3-rc1 (diff) | |
download | linux-c29b97725c91add5021a3257c14ad1ed32eedf76.tar.xz linux-c29b97725c91add5021a3257c14ad1ed32eedf76.zip |
ACPI: docs: enumeration: Correct reference to the I²C device data type
I²C peripheral devices that are connected to the controller are
represented in the Linux kernel as objects of the struct i2c_client.
Fix this in the documentation.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Rafael J. Wysocki <rjw@rjwysocki.net>
Diffstat (limited to 'Documentation/firmware-guide')
-rw-r--r-- | Documentation/firmware-guide/acpi/enumeration.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/firmware-guide/acpi/enumeration.rst b/Documentation/firmware-guide/acpi/enumeration.rst index b9dc0c603f36..56d9913a3370 100644 --- a/Documentation/firmware-guide/acpi/enumeration.rst +++ b/Documentation/firmware-guide/acpi/enumeration.rst @@ -19,7 +19,7 @@ possible we decided to do following: platform devices. - Devices behind real busses where there is a connector resource - are represented as struct spi_device or struct i2c_device. Note + are represented as struct spi_device or struct i2c_client. Note that standard UARTs are not busses so there is no struct uart_device, although some of them may be represented by struct serdev_device. |