Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=312d045c75fc76e7de51520c3c1b6b5bec565cc9
Commit:     312d045c75fc76e7de51520c3c1b6b5bec565cc9
Parent:     625dc0bf4d91d379e8b4d5c3c9e05ad6fa978c51
Author:     Takashi Iwai <[EMAIL PROTECTED]>
AuthorDate: Tue Jul 31 11:08:10 2007 +0200
Committer:  Jaroslav Kysela <[EMAIL PROTECTED]>
CommitDate: Tue Oct 16 15:58:16 2007 +0200

    [ALSA] hda-intel - Fix compile warning in snd_hwdep_ioctl_compat()
    
    Fix missing cast:
        sound/pci/hda/hda_hwdep.c:86: warning: passing argument 4 of 
'hda_hwdep_ioctl' makes integer from pointer without a cast
    
    Signed-off-by: Takashi Iwai <[EMAIL PROTECTED]>
    Signed-off-by: Jaroslav Kysela <[EMAIL PROTECTED]>
---
 sound/pci/hda/hda_hwdep.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/sound/pci/hda/hda_hwdep.c b/sound/pci/hda/hda_hwdep.c
index 64be7b5..bafb7b0 100644
--- a/sound/pci/hda/hda_hwdep.c
+++ b/sound/pci/hda/hda_hwdep.c
@@ -83,7 +83,7 @@ static int hda_hwdep_ioctl(struct snd_hwdep *hw, struct file 
*file,
 static int hda_hwdep_ioctl_compat(struct snd_hwdep *hw, struct file *file,
                                  unsigned int cmd, unsigned long arg)
 {
-       return hda_hwdep_ioctl(hw, file, cmd, compat_ptr(arg));
+       return hda_hwdep_ioctl(hw, file, cmd, (unsigned long)compat_ptr(arg));
 }
 #endif
 
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to