diff options
author | Mark Brown <broonie@kernel.org> | 2024-07-11 00:26:23 +0100 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2024-07-11 00:26:23 +0100 |
commit | 1ee45e649ebf07f1438a464fc3bafd14becea797 (patch) | |
tree | a35d7e2e37f4a41bdcbf34db559428861decdcee /include/linux/firmware | |
parent | 0d1ebba74fad7b6b3eb0e2bc08d649d20c7aa7c9 (diff) | |
parent | dc0e5ca8856dc6a97e3b117879dfb2b52bda06b6 (diff) | |
download | linux-1ee45e649ebf07f1438a464fc3bafd14becea797.tar.gz linux-1ee45e649ebf07f1438a464fc3bafd14becea797.tar.bz2 linux-1ee45e649ebf07f1438a464fc3bafd14becea797.zip |
firmware: cs_dsp: Some small coding improvements
Merge series from Richard Fitzgerald <rf@opensource.cirrus.com>:
Commit series that makes some small improvements to code and the
kernel log messages.
Diffstat (limited to 'include/linux/firmware')
-rw-r--r-- | include/linux/firmware/cirrus/cs_dsp.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/linux/firmware/cirrus/cs_dsp.h b/include/linux/firmware/cirrus/cs_dsp.h index 82687e07a7c2..2e649810169f 100644 --- a/include/linux/firmware/cirrus/cs_dsp.h +++ b/include/linux/firmware/cirrus/cs_dsp.h @@ -167,7 +167,7 @@ struct cs_dsp { const struct cs_dsp_region *mem; int num_mems; - int fw_ver; + int wmfw_ver; bool booted; bool running; @@ -213,13 +213,13 @@ int cs_dsp_adsp2_init(struct cs_dsp *dsp); int cs_dsp_halo_init(struct cs_dsp *dsp); int cs_dsp_adsp1_power_up(struct cs_dsp *dsp, - const struct firmware *wmfw_firmware, char *wmfw_filename, - const struct firmware *coeff_firmware, char *coeff_filename, + const struct firmware *wmfw_firmware, const char *wmfw_filename, + const struct firmware *coeff_firmware, const char *coeff_filename, const char *fw_name); void cs_dsp_adsp1_power_down(struct cs_dsp *dsp); int cs_dsp_power_up(struct cs_dsp *dsp, - const struct firmware *wmfw_firmware, char *wmfw_filename, - const struct firmware *coeff_firmware, char *coeff_filename, + const struct firmware *wmfw_firmware, const char *wmfw_filename, + const struct firmware *coeff_firmware, const char *coeff_filename, const char *fw_name); void cs_dsp_power_down(struct cs_dsp *dsp); int cs_dsp_run(struct cs_dsp *dsp); |