* [PATCH] ALSA: usb: fcp: Fix hwdep read ops argument
@ 2025-01-19 8:53 Takashi Iwai
2025-01-20 7:39 ` Takashi Iwai
0 siblings, 1 reply; 2+ messages in thread
From: Takashi Iwai @ 2025-01-19 8:53 UTC (permalink / raw)
To: linux-sound; +Cc: Geoffrey D . Bennett
The hwdep read ops argument is long instead of ssize_t due to
historical reason. Fix the build error.
Fixes: 46757a3e7d50 ("ALSA: FCP: Add Focusrite Control Protocol driver")
Reported-by: kernel test robot <lkp@intel.com>
Closes: https://lore.kernel.org/oe-kbuild-all/202501190536.A2CiOP0a-lkp@intel.com/
Signed-off-by: Takashi Iwai <tiwai@suse.de>
---
sound/usb/fcp.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sound/usb/fcp.c b/sound/usb/fcp.c
index 655e4f7338ed..eb6a5c1f9b21 100644
--- a/sound/usb/fcp.c
+++ b/sound/usb/fcp.c
@@ -816,7 +816,7 @@ static int fcp_hwdep_ioctl(struct snd_hwdep *hw, struct file *file,
}
static ssize_t fcp_hwdep_read(struct snd_hwdep *hw, char __user *buf,
- ssize_t count, loff_t *offset)
+ long count, loff_t *offset)
{
struct usb_mixer_interface *mixer = hw->private_data;
struct fcp_data *private = mixer->private_data;
--
2.43.0
^ permalink raw reply related [flat|nested] 2+ messages in thread* Re: [PATCH] ALSA: usb: fcp: Fix hwdep read ops argument
2025-01-19 8:53 [PATCH] ALSA: usb: fcp: Fix hwdep read ops argument Takashi Iwai
@ 2025-01-20 7:39 ` Takashi Iwai
0 siblings, 0 replies; 2+ messages in thread
From: Takashi Iwai @ 2025-01-20 7:39 UTC (permalink / raw)
To: linux-sound; +Cc: Geoffrey D . Bennett
On Sun, 19 Jan 2025 09:53:28 +0100,
Takashi Iwai wrote:
>
> The hwdep read ops argument is long instead of ssize_t due to
> historical reason. Fix the build error.
>
> Fixes: 46757a3e7d50 ("ALSA: FCP: Add Focusrite Control Protocol driver")
> Reported-by: kernel test robot <lkp@intel.com>
> Closes: https://lore.kernel.org/oe-kbuild-all/202501190536.A2CiOP0a-lkp@intel.com/
> Signed-off-by: Takashi Iwai <tiwai@suse.de>
> ---
> sound/usb/fcp.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/sound/usb/fcp.c b/sound/usb/fcp.c
> index 655e4f7338ed..eb6a5c1f9b21 100644
> --- a/sound/usb/fcp.c
> +++ b/sound/usb/fcp.c
> @@ -816,7 +816,7 @@ static int fcp_hwdep_ioctl(struct snd_hwdep *hw, struct file *file,
> }
>
> static ssize_t fcp_hwdep_read(struct snd_hwdep *hw, char __user *buf,
> - ssize_t count, loff_t *offset)
> + long count, loff_t *offset)
> {
> struct usb_mixer_interface *mixer = hw->private_data;
> struct fcp_data *private = mixer->private_data;
Gah, that wasn't enough, a few other ssize_t had to be replaced with
long. Stephen already submitted the fix patch for linux-next, and
I'll take it instead.
Takashi
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2025-01-20 7:39 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-01-19 8:53 [PATCH] ALSA: usb: fcp: Fix hwdep read ops argument Takashi Iwai
2025-01-20 7:39 ` Takashi Iwai
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox