Ignore:
Timestamp:
Mar 24, 2008, 2:43:42 AM (17 years ago)
Author:
Paul Smedley
Message:

Update source to ALSA 1.0.16 level

File:
1 edited

Legend:

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

    r125 r305  
    7070 */
    7171
    72 struct tasklet_struct
    73 {
    74         struct tasklet_struct *next;
    75         unsigned long state;
    76         atomic_t count;
    77         void (*func)(unsigned long);
    78         unsigned long data;
     72struct tasklet_struct {
     73        struct tasklet_struct *next;    /* linked list of active bh's */
     74        unsigned long sync;             /* must be initialized to zero */
     75        void (*func)(void *);           /* function to call */
     76        void *data;                     /* argument to function */
    7977};
    8078
Note: See TracChangeset for help on using the changeset viewer.