diff options
| author | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2013-12-10 14:31:56 +0100 | 
|---|---|---|
| committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2013-12-10 22:23:59 +0100 | 
| commit | f15ea6e1d67782a1626d4a4922b6c20e380085e5 (patch) | |
| tree | 57d78f1ee94a2060eaa591533278d2934d4f1da3 /tools/updater/ctype.c | |
| parent | cb7ee1b98cac6baf244daefb1192adf5a47bc983 (diff) | |
| parent | f44483b57c49282299da0e5c10073b909cdad979 (diff) | |
| download | olio-uboot-2014.01-f15ea6e1d67782a1626d4a4922b6c20e380085e5.tar.xz olio-uboot-2014.01-f15ea6e1d67782a1626d4a4922b6c20e380085e5.zip | |
Merge branch 'u-boot/master' into 'u-boot-arm/master'
Conflicts:
	arch/arm/cpu/armv7/rmobile/Makefile
	doc/README.scrapyard
Needed manual fix:
	arch/arm/cpu/armv7/omap-common/Makefile
	board/compulab/cm_t335/u-boot.lds
Diffstat (limited to 'tools/updater/ctype.c')
| -rw-r--r-- | tools/updater/ctype.c | 40 | 
1 files changed, 0 insertions, 40 deletions
| diff --git a/tools/updater/ctype.c b/tools/updater/ctype.c deleted file mode 100644 index 96fa9ed11..000000000 --- a/tools/updater/ctype.c +++ /dev/null @@ -1,40 +0,0 @@ -/* - * (C) Copyright 2000 - * Wolfgang Denk, DENX Software Engineering, wd@denx.de. - * - * SPDX-License-Identifier:	GPL-2.0+ - */ - -/* - *  linux/lib/ctype.c - * - *  Copyright (C) 1991, 1992  Linus Torvalds - */ - -#include <linux/ctype.h> - -unsigned char _ctype[] = { -_C,_C,_C,_C,_C,_C,_C,_C,			/* 0-7 */ -_C,_C|_S,_C|_S,_C|_S,_C|_S,_C|_S,_C,_C,		/* 8-15 */ -_C,_C,_C,_C,_C,_C,_C,_C,			/* 16-23 */ -_C,_C,_C,_C,_C,_C,_C,_C,			/* 24-31 */ -_S|_SP,_P,_P,_P,_P,_P,_P,_P,			/* 32-39 */ -_P,_P,_P,_P,_P,_P,_P,_P,			/* 40-47 */ -_D,_D,_D,_D,_D,_D,_D,_D,			/* 48-55 */ -_D,_D,_P,_P,_P,_P,_P,_P,			/* 56-63 */ -_P,_U|_X,_U|_X,_U|_X,_U|_X,_U|_X,_U|_X,_U,	/* 64-71 */ -_U,_U,_U,_U,_U,_U,_U,_U,			/* 72-79 */ -_U,_U,_U,_U,_U,_U,_U,_U,			/* 80-87 */ -_U,_U,_U,_P,_P,_P,_P,_P,			/* 88-95 */ -_P,_L|_X,_L|_X,_L|_X,_L|_X,_L|_X,_L|_X,_L,	/* 96-103 */ -_L,_L,_L,_L,_L,_L,_L,_L,			/* 104-111 */ -_L,_L,_L,_L,_L,_L,_L,_L,			/* 112-119 */ -_L,_L,_L,_P,_P,_P,_P,_C,			/* 120-127 */ -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,		/* 128-143 */ -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,		/* 144-159 */ -_S|_SP,_P,_P,_P,_P,_P,_P,_P,_P,_P,_P,_P,_P,_P,_P,_P,   /* 160-175 */ -_P,_P,_P,_P,_P,_P,_P,_P,_P,_P,_P,_P,_P,_P,_P,_P,       /* 176-191 */ -_U,_U,_U,_U,_U,_U,_U,_U,_U,_U,_U,_U,_U,_U,_U,_U,       /* 192-207 */ -_U,_U,_U,_U,_U,_U,_U,_P,_U,_U,_U,_U,_U,_U,_U,_L,       /* 208-223 */ -_L,_L,_L,_L,_L,_L,_L,_L,_L,_L,_L,_L,_L,_L,_L,_L,       /* 224-239 */ -_L,_L,_L,_L,_L,_L,_L,_P,_L,_L,_L,_L,_L,_L,_L,_L};      /* 240-255 */ |