aboutsummaryrefslogtreecommitdiff
path: root/arch/score/lib
AgeCommit message (Collapse)AuthorFilesLines
2018-03-09arch: remove score portArnd Bergmann10-732/+0
The Sunplus S+core architecture was added in 2009 by Chen Liqin, who has been co-maintaining it with Lennox Wu <[email protected]> since then, but after they both left the company, nobody else has shown any interest in the port and it has seen almost no activity other than tree-wide changes. The gcc port was removed a few years ago due to the inactivity. While the sunplus website still advertises products with unspecified RISC cores that might be S+core based, it's very clear that the Linux port is completely abandoned at this point. This removes all files related to the architecture. Acked-by: Lennox Wu <[email protected]> Link: http://www.sunplus.com/ Signed-off-by: Arnd Bergmann <[email protected]>
2017-05-15kill strlen_user()Al Viro1-28/+0
no callers, no consistent semantics, no sane way to use it... Signed-off-by: Al Viro <[email protected]>
2016-12-24Replace <asm/uaccess.h> with <linux/uaccess.h> globallyLinus Torvalds1-1/+1
This was entirely automated, using the script by Al: PATT='^[[:blank:]]*#[[:blank:]]*include[[:blank:]]*<asm/uaccess.h>' sed -i -e "s!$PATT!#include <linux/uaccess.h>!" \ $(git grep -l "$PATT"|grep -v ^include/linux/uaccess.h) to do the replacement at the end of the merge window. Requested-by: Al Viro <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
2015-06-10score: Fix exception handler labelGuenter Roeck1-1/+1
The latest version of modinfo fails to compile score architecture targets with the following error. FATAL: The relocation at __ex_table+0x634 references section "__ex_table" which is not executable, IOW the kernel will fault if it ever tries to jump to it. Something is seriously wrong and should be fixed. The probem is caused by a bad label in an __ex_table entry. Acked-by: Lennox Wu <[email protected]> Cc: Quentin Casasnovas <[email protected]> Signed-off-by: Guenter Roeck <[email protected]>
2014-10-05arch: score: Export necessary symbols in related filesChen Gang1-0/+1
'csum_partial_copy_from_user' and 'flush_dcache_page' are also needed by outside modules, so need export them in the related files. The related error (with allmodconfig under score): MODPOST 1365 modules ERROR: "csum_partial_copy_from_user" [net/rxrpc/af-rxrpc.ko] undefined! ERROR: "flush_dcache_page" [net/sunrpc/sunrpc.ko] undefined! Acked-by: Lennox Wu <[email protected]> Signed-off-by: Chen Gang <[email protected]>
2013-12-10[media] doc: no singingKees Cook1-1/+1
Stop that, stop that! You're not going to do a song while I'm here. Signed-off-by: Kees Cook <[email protected]> Signed-off-by: Mauro Carvalho Chehab <[email protected]>
2009-06-19score: remove __{put,get}_user_unknownArnd Bergmann1-12/+0
The point of these extern declarations is to provoke a link error, so an architecture must not provide a symbol for them. Signed-off-by: Arnd Bergmann <[email protected]>
2009-06-19score: Add support for Sunplus S+core architectureChen Liqin10-0/+771
This is the complete set of new arch Score's files for linux. Score instruction set support 16bits, 32bits and 64bits instruction, Score SOC had been used in game machine and LCD TV. Signed-off-by: Chen Liqin <[email protected]> Signed-off-by: Arnd Bergmann <[email protected]>