diff options
| author | Nikhil Gautam <nikhilgtr@gmail.com> | 2026-04-14 22:33:06 +0530 |
|---|---|---|
| committer | Jonathan Cameron <jic23@kernel.org> | 2026-04-27 09:58:20 +0100 |
| commit | f4d618c6185101efa072fd5845000fee2074b8b8 (patch) | |
| tree | 51ddbe5e30ee73e5c60055537349ccb1a7d5519b /drivers | |
| parent | a9ecd9a121752f2d7bb69da264bda65b6b6e6c6e (diff) | |
| download | linux-f4d618c6185101efa072fd5845000fee2074b8b8.tar.gz linux-f4d618c6185101efa072fd5845000fee2074b8b8.zip | |
iio: dac: mcp4821: fix spelling mistake in enum name
Fix a typo in the enum name mcp4821_supported_drvice_ids
by renaming it to mcp4821_supported_device_ids.
This improves code readability and consistency.
Signed-off-by: Nikhil Gautam <nikhilgtr@gmail.com>
Reviewed-by: David Lechner <dlechner@baylibre.com>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/iio/dac/mcp4821.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/iio/dac/mcp4821.c b/drivers/iio/dac/mcp4821.c index 748bdca9a964..29187f2a9d3c 100644 --- a/drivers/iio/dac/mcp4821.c +++ b/drivers/iio/dac/mcp4821.c @@ -31,7 +31,7 @@ /* DAC uses an internal Voltage reference of 4.096V at a gain of 2x */ #define MCP4821_2X_GAIN_VREF_MV 4096 -enum mcp4821_supported_drvice_ids { +enum mcp4821_supported_device_ids { ID_MCP4801, ID_MCP4802, ID_MCP4811, |
