Ignore:
Timestamp:
Oct 6, 2012, 11:23:50 AM (13 years ago)
Author:
Paul Smedley
Message:

Update trunk to ALSA 1.0.24

File:
1 edited

Legend:

Unmodified
Added
Removed
  • GPL/branches/uniaud32-2.1.x/lib32/misc.c

    r532 r569  
    435435//******************************************************************************
    436436//******************************************************************************
     437bool flush_delayed_work_sync(struct delayed_work *dwork)
     438{
     439        bool ret;
     440        ret = cancel_delayed_work(dwork);
     441        if (ret) {
     442                schedule_delayed_work(dwork, 0);
     443                flush_scheduled_work();
     444        }
     445        return ret;
     446}
     447//******************************************************************************
     448//******************************************************************************
    437449static void delayed_work_timer_fn(unsigned long __data)
    438450{
Note: See TracChangeset for help on using the changeset viewer.