Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 117137
b: refs/heads/master
c: f55ccbf
h: refs/heads/master
i:
  117135: d3bf799
v: v3
  • Loading branch information
Tzafrir Cohen authored and Greg Kroah-Hartman committed Oct 22, 2008
1 parent 5dd0c69 commit 3586206
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 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: 9d8f2d5dfbcc9d2229f5e93653988d98360e248c
refs/heads/master: f55ccbf6bc5e5e857b15f51d481aa7b1cd993ae0
2 changes: 1 addition & 1 deletion trunk/drivers/staging/echo/echo.c
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@
/* adapting coeffs using the traditional stochastic descent (N)LMS algorithm */


#ifdef __BLACKFIN_ASM__
#ifdef __bfin__
static void __inline__ lms_adapt_bg(struct oslec_state *ec, int clean, int shift)
{
int i, j;
Expand Down
8 changes: 4 additions & 4 deletions trunk/drivers/staging/echo/fir.h
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ static __inline__ const int16_t *fir16_create(fir16_state_t *fir,
fir->taps = taps;
fir->curr_pos = taps - 1;
fir->coeffs = coeffs;
#if defined(USE_MMX) || defined(USE_SSE2) || defined(__BLACKFIN_ASM__)
#if defined(USE_MMX) || defined(USE_SSE2) || defined(__bfin__)
if ((fir->history = malloc(2*taps*sizeof(int16_t))))
memset(fir->history, 0, 2*taps*sizeof(int16_t));
#else
Expand All @@ -129,7 +129,7 @@ static __inline__ const int16_t *fir16_create(fir16_state_t *fir,

static __inline__ void fir16_flush(fir16_state_t *fir)
{
#if defined(USE_MMX) || defined(USE_SSE2) || defined(__BLACKFIN_ASM__)
#if defined(USE_MMX) || defined(USE_SSE2) || defined(__bfin__)
memset(fir->history, 0, 2*fir->taps*sizeof(int16_t));
#else
memset(fir->history, 0, fir->taps*sizeof(int16_t));
Expand All @@ -143,7 +143,7 @@ static __inline__ void fir16_free(fir16_state_t *fir)
}
/*- End of function --------------------------------------------------------*/

#ifdef __BLACKFIN_ASM__
#ifdef __bfin__
static inline int32_t dot_asm(short *x, short *y, int len)
{
int dot;
Expand Down Expand Up @@ -242,7 +242,7 @@ static __inline__ int16_t fir16(fir16_state_t *fir, int16_t sample)
psrldq_i2r(4, xmm0);
paddd_r2r(xmm0, xmm4);
movd_r2m(xmm4, y);
#elif defined(__BLACKFIN_ASM__)
#elif defined(__bfin__)
fir->history[fir->curr_pos] = sample;
fir->history[fir->curr_pos + fir->taps] = sample;
y = dot_asm((int16_t*)fir->coeffs, &fir->history[fir->curr_pos], fir->taps);
Expand Down

0 comments on commit 3586206

Please sign in to comment.