]> git.hungrycats.org Git - linux/commitdiff
[PATCH] 2.5: bluetooth compile fix
authorRobert Love <rml@tech9.net>
Thu, 7 Feb 2002 01:32:47 +0000 (17:32 -0800)
committerLinus Torvalds <torvalds@athlon.transmeta.com>
Thu, 7 Feb 2002 01:32:47 +0000 (17:32 -0800)
The llseek cleanup contained a typo in bluetooth/hci_vhci.c that
prevents compile.  Thankfully it seems to be the only of this type.

Robert Love

drivers/bluetooth/hci_vhci.c

index 4fe439a995cc9637c6182cc2f8e352980e7c842c..4745efc0370a81ab4b842cdd534ebd0d41fd886b 100644 (file)
@@ -291,7 +291,7 @@ static int hci_vhci_chr_close(struct inode *inode, struct file *file)
 
 static struct file_operations hci_vhci_fops = {
        owner:  THIS_MODULE,    
-       llseek: no_lseek,
+       llseek: no_llseek,
        read:   hci_vhci_chr_read,
        write:  hci_vhci_chr_write,
        poll:   hci_vhci_chr_poll,