Changeset 316 for GPL


Ignore:
Timestamp:
Mar 24, 2008, 10:44:49 PM (17 years ago)
Author:
Paul Smedley
Message:

Fix more compiler warnings (Again)

Location:
GPL/branches/uniaud-2.0
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • GPL/branches/uniaud-2.0/include/irqos2.h

    r63 r316  
    2929
    3030
    31 typedef int (NEAR * IRQHANDLER)(int, void *, struct pt_regs *);
     31typedef int irqreturn_t;
     32typedef irqreturn_t (*snd_irq_handler_t)(int, void *);
     33#define irq_handler_t snd_irq_handler_t
     34#undef irq_handler_t
     35#define irq_handler_t snd_irq_handler_t
    3236
    3337typedef struct {
    34   IRQHANDLER handler;
     38  irq_handler_t handler;
    3539  ULONG x0;
    3640  char *x1;
  • GPL/branches/uniaud-2.0/include/version.h

    r309 r316  
    1313#define PRODUCT_NAME            "Universal Audio Driver for OS/2 and eComStation"
    1414#define VENDOR_NAME             "Netlabs"
    15 #define PRODUCT_TIMESTAMP       20080324L       // YYYYMMDD
     15#define PRODUCT_TIMESTAMP       20080325L       // YYYYMMDD
    1616#define UNIAUD_VERSION          "1.9.0-"
    1717#define ALSA_VERSION            "1.0.16"
  • GPL/branches/uniaud-2.0/lib32/irq.c

    r314 r316  
    198198            {
    199199                fInInterrupt = TRUE;
     200#if 0
    200201                rc = pSlot->irqHandlers[u].handler(pSlot->irqNo,
    201202                                                   pSlot->irqHandlers[u].x2, 0);
     203#else
     204                rc = pSlot->irqHandlers[u].handler(pSlot->irqNo,
     205                                                   pSlot->irqHandlers[u].x2);
     206#endif
    202207                if (rc == 1) eoi_irq(pSlot->irqNo);
    203208                rc = (eoiIrq[pSlot->irqNo] > 0);
Note: See TracChangeset for help on using the changeset viewer.