Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 219629
b: refs/heads/master
c: 27e7f23
h: refs/heads/master
i:
  219627: 050618e
v: v3
  • Loading branch information
Ivan Gomez Castellanos authored and Greg Kroah-Hartman committed Aug 31, 2010
1 parent 3a96980 commit 4c4f54b
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 33 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 3aa1e0e6c7cf290bcf1cec011e10620159beb634
refs/heads/master: 27e7f23f64090ad2738e791d3693ef6e70c20327
2 changes: 1 addition & 1 deletion trunk/drivers/staging/tidspbridge/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ obj-$(CONFIG_TIDSPBRIDGE) += bridgedriver.o

libgen = gen/gb.o gen/gs.o gen/gh.o gen/uuidutil.o
libservices = services/cfg.o \
services/ntfy.o services/services.o
services/services.o
libcore = core/chnl_sm.o core/msg_sm.o core/io_sm.o core/tiomap3430.o \
core/tiomap3430_pwr.o core/tiomap_io.o \
core/ue_deh.o core/wdt.o core/dsp-clock.o core/sync.o
Expand Down
17 changes: 17 additions & 0 deletions trunk/drivers/staging/tidspbridge/core/sync.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@

/* ----------------------------------- This */
#include <dspbridge/sync.h>
#include <dspbridge/ntfy.h>

DEFINE_SPINLOCK(sync_lock);

Expand Down Expand Up @@ -102,3 +103,19 @@ int sync_wait_on_multiple_events(struct sync_object **events,
return status;
}

/**
* dsp_notifier_event() - callback function to nofity events
* @this: pointer to itself struct notifier_block
* @event: event to be notified.
* @data: Currently not used.
*
*/
int dsp_notifier_event(struct notifier_block *this, unsigned long event,
void *data)
{
struct ntfy_event *ne = container_of(this, struct ntfy_event,
noti_block);
if (ne->event & event)
sync_set_event(&ne->sync_obj);
return NOTIFY_OK;
}
31 changes: 0 additions & 31 deletions trunk/drivers/staging/tidspbridge/services/ntfy.c

This file was deleted.

0 comments on commit 4c4f54b

Please sign in to comment.