diff options
author | Simon Glass | 2018-12-03 04:37:20 -0700 |
---|---|---|
committer | Simon Glass | 2018-12-13 16:32:49 -0700 |
commit | ee53494d0e39b110bbfa4df828c0b70131013014 (patch) | |
tree | fa9e844a79bf9f00564caf05b820211f3e557ac3 /include/sound.h | |
parent | eb13350216552b2770be8d3aec5fb2a587a6e05c (diff) |
dm: sound: Rename en_sound_codec to sound_codec
The en_ prefix is confusing and not needed. Drop it.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/sound.h')
-rw-r--r-- | include/sound.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/sound.h b/include/sound.h index 77bfe6a93b2..149e12dbc60 100644 --- a/include/sound.h +++ b/include/sound.h @@ -8,7 +8,7 @@ #define __SOUND_H__ /* sound codec enum */ -enum en_sound_codec { +enum sound_codec { CODEC_WM_8994, CODEC_WM_8995, CODEC_MAX_98095, @@ -25,7 +25,7 @@ enum sound_compat { struct sound_codec_info { int i2c_bus; int i2c_dev_addr; - enum en_sound_codec codec_type; + enum sound_codec codec_type; }; /* |