X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=oss_write.c;h=8426753e1355dcf7424f140e281683ea580eb693;hp=b002113caeb5e3c7dd75c78080a4fb9cead20510;hb=e9e826f4fb415c4225ff5934fe42572ffa3b5ebc;hpb=28e9fc661113f219f8e11f4e23723a176d9ac09c diff --git a/oss_write.c b/oss_write.c index b002113c..8426753e 100644 --- a/oss_write.c +++ b/oss_write.c @@ -36,7 +36,7 @@ struct private_oss_write_data { int bytes_per_frame; }; -static void oss_pre_select_btr(struct sched *s, struct task *t) +static void oss_pre_select(struct sched *s, struct task *t) { struct writer_node *wn = container_of(t, struct writer_node, task); struct private_oss_write_data *powd = wn->private_data; @@ -141,7 +141,7 @@ err: return ret; } -static void oss_post_select_btr(__a_unused struct sched *s, +static void oss_post_select(__a_unused struct sched *s, struct task *t) { struct writer_node *wn = container_of(t, struct writer_node, task); @@ -236,8 +236,8 @@ void oss_write_init(struct writer *w) oss_cmdline_parser_init(&dummy); w->open = oss_open; w->close = oss_close; - w->pre_select_btr = oss_pre_select_btr; - w->post_select_btr = oss_post_select_btr; + w->pre_select = oss_pre_select; + w->post_select = oss_post_select; w->parse_config = oss_parse_config; w->free_config = oss_free_config; w->shutdown = NULL;