Changeset 315 for GPL


Ignore:
Timestamp:
Mar 24, 2008, 9:54:25 AM (17 years ago)
Author:
Paul Smedley
Message:

Fix more compiler warnings

Location:
GPL/branches/uniaud-2.0/alsa-kernel
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • GPL/branches/uniaud-2.0/alsa-kernel/include/sound/config.h

    r314 r315  
    580580#define pci_dev_present(x) snd_pci_dev_present(x)
    581581
     582/* definitions for functions in pci_iomap_compat.c */
     583#ifndef fastcall
     584#define fastcall
     585#endif
     586
     587unsigned int fastcall ioread8(void __iomem *addr);
     588unsigned int fastcall ioread16(void __iomem *addr);
     589unsigned int fastcall ioread32(void __iomem *addr);
     590void fastcall iowrite8(u8 val, void __iomem *addr);
     591void fastcall iowrite16(u16 val, void __iomem *addr);
     592void fastcall iowrite32(u32 val, void __iomem *addr);
     593void __iomem *ioport_map(unsigned long port, unsigned int nr);
     594void ioport_unmap(void __iomem *addr);
     595void __iomem *pci_iomap(struct pci_dev *dev, int bar, unsigned long maxlen);
     596void pci_iounmap(struct pci_dev *dev, void __iomem * addr);
     597
    582598#endif //__ALSA_CONFIG_H__
  • GPL/branches/uniaud-2.0/alsa-kernel/pci/hda/hda_local.h

    r305 r315  
    133133struct hda_bind_ctls {
    134134        struct hda_ctl_ops *ops;
     135#ifndef TARGET_OS2
    135136        long values[];
     137#else
     138        unsigned long values[];
     139#endif
    136140};
    137141
Note: See TracChangeset for help on using the changeset viewer.