mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-28 01:21:58 +00:00
[MIPS] checkfiles: Fix "need space after that ','" errors.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
This commit is contained in:
parent
49a89efbbb
commit
21a151d8ca
121 changed files with 1951 additions and 1943 deletions
|
@ -271,14 +271,22 @@ asmlinkage void sb1_cache_error(void)
|
||||||
|
|
||||||
/* Parity lookup table. */
|
/* Parity lookup table. */
|
||||||
static const uint8_t parity[256] = {
|
static const uint8_t parity[256] = {
|
||||||
0,1,1,0,1,0,0,1,1,0,0,1,0,1,1,0,1,0,0,1,0,1,1,0,0,1,1,0,1,0,0,1,
|
0, 1, 1, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 1, 1, 0,
|
||||||
1,0,0,1,0,1,1,0,0,1,1,0,1,0,0,1,0,1,1,0,1,0,0,1,1,0,0,1,0,1,1,0,
|
1, 0, 0, 1, 0, 1, 1, 0, 0, 1, 1, 0, 1, 0, 0, 1,
|
||||||
1,0,0,1,0,1,1,0,0,1,1,0,1,0,0,1,0,1,1,0,1,0,0,1,1,0,0,1,0,1,1,0,
|
1, 0, 0, 1, 0, 1, 1, 0, 0, 1, 1, 0, 1, 0, 0, 1,
|
||||||
0,1,1,0,1,0,0,1,1,0,0,1,0,1,1,0,1,0,0,1,0,1,1,0,0,1,1,0,1,0,0,1,
|
0, 1, 1, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 1, 1, 0,
|
||||||
1,0,0,1,0,1,1,0,0,1,1,0,1,0,0,1,0,1,1,0,1,0,0,1,1,0,0,1,0,1,1,0,
|
1, 0, 0, 1, 0, 1, 1, 0, 0, 1, 1, 0, 1, 0, 0, 1,
|
||||||
0,1,1,0,1,0,0,1,1,0,0,1,0,1,1,0,1,0,0,1,0,1,1,0,0,1,1,0,1,0,0,1,
|
0, 1, 1, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 1, 1, 0,
|
||||||
0,1,1,0,1,0,0,1,1,0,0,1,0,1,1,0,1,0,0,1,0,1,1,0,0,1,1,0,1,0,0,1,
|
0, 1, 1, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 1, 1, 0,
|
||||||
1,0,0,1,0,1,1,0,0,1,1,0,1,0,0,1,0,1,1,0,1,0,0,1,1,0,0,1,0,1,1,0
|
1, 0, 0, 1, 0, 1, 1, 0, 0, 1, 1, 0, 1, 0, 0, 1,
|
||||||
|
1, 0, 0, 1, 0, 1, 1, 0, 0, 1, 1, 0, 1, 0, 0, 1,
|
||||||
|
0, 1, 1, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 1, 1, 0,
|
||||||
|
0, 1, 1, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 1, 1, 0,
|
||||||
|
1, 0, 0, 1, 0, 1, 1, 0, 0, 1, 1, 0, 1, 0, 0, 1,
|
||||||
|
0, 1, 1, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 1, 1, 0,
|
||||||
|
1, 0, 0, 1, 0, 1, 1, 0, 0, 1, 1, 0, 1, 0, 0, 1,
|
||||||
|
1, 0, 0, 1, 0, 1, 1, 0, 0, 1, 1, 0, 1, 0, 0, 1,
|
||||||
|
0, 1, 1, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 1, 1, 0
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Masks to select bits for Hamming parity, mask_72_64[i] for bit[i] */
|
/* Masks to select bits for Hamming parity, mask_72_64[i] for bit[i] */
|
||||||
|
|
|
@ -154,7 +154,7 @@ int64_t cfe_getticks(void);
|
||||||
#define cfe_readblk(a, b, c, d) __cfe_readblk(a, b, c, d)
|
#define cfe_readblk(a, b, c, d) __cfe_readblk(a, b, c, d)
|
||||||
#define cfe_setenv(a, b) __cfe_setenv(a, b)
|
#define cfe_setenv(a, b) __cfe_setenv(a, b)
|
||||||
#define cfe_write(a, b, c) __cfe_write(a, b, c)
|
#define cfe_write(a, b, c) __cfe_write(a, b, c)
|
||||||
#define cfe_writeblk(a,b,c,d) __cfe_writeblk(a,b,c,d)
|
#define cfe_writeblk(a, b, c, d __cfe_writeblk(a, b, c, d)
|
||||||
#endif /* CFE_API_IMPL_NAMESPACE */
|
#endif /* CFE_API_IMPL_NAMESPACE */
|
||||||
|
|
||||||
int cfe_close(int handle);
|
int cfe_close(int handle);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue