/* * Common header file for Blackfin family of processors. * * Copyright 2004-2009 Analog Devices Inc. * * Licensed under the GPL-2 or later. */ #ifndef _BLACKFIN_H_ #define _BLACKFIN_H_ #include <mach/anomaly.h> #ifndef __ASSEMBLY__ /* SSYNC implementation for C file */
static inline void SSYNC(void) { int _tmp; if (ANOMALY_05000312 || ANOMALY_05000244) __asm__ __volatile__( "cli %0;" "nop;" "nop;" "nop;" "ssync;" "sti %0;" : "=d" (_tmp) ); else __asm__ __volatile__("ssync;"); }Contributors
| Person | Tokens | Prop | Commits | CommitProp |
| Bryan Wu | 16 | 64.00% | 1 | 33.33% |
| Mike Frysinger | 7 | 28.00% | 1 | 33.33% |
| Bob Liu | 2 | 8.00% | 1 | 33.33% |
| Total | 25 | 100.00% | 3 | 100.00% |
| Person | Tokens | Prop | Commits | CommitProp |
| Bryan Wu | 16 | 64.00% | 1 | 33.33% |
| Mike Frysinger | 7 | 28.00% | 1 | 33.33% |
| Bob Liu | 2 | 8.00% | 1 | 33.33% |
| Total | 25 | 100.00% | 3 | 100.00% |
| Person | Tokens | Prop | Commits | CommitProp |
| Bryan Wu | 53 | 31.93% | 2 | 18.18% |
| Robin Getz | 53 | 31.93% | 2 | 18.18% |
| Mike Frysinger | 51 | 30.72% | 5 | 45.45% |
| Bob Liu | 9 | 5.42% | 2 | 18.18% |
| Total | 166 | 100.00% | 11 | 100.00% |