mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 01:31:44 +00:00
96f1050d3d
Bill Gatliff & David Brownell pointed out we were missing some copyrights, and licensing terms in some of the files in ./arch/blackfin, so this fixes things, and cleans them up. It also removes: - verbose GPL text(refer to the top level ./COPYING file) - file names (you are looking at the file) - bug url (it's in the ./MAINTAINERS file) - "or later" on GPL-2, when we did not have that right It also allows some Blackfin-specific assembly files to be under a BSD like license (for people to use them outside of Linux). Signed-off-by: Robin Getz <robin.getz@analog.com> Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25 lines
595 B
C
25 lines
595 B
C
/*
|
|
* Copyright 2004-2009 Analog Devices Inc.
|
|
*
|
|
* Licensed under the GPL-2 or later.
|
|
*/
|
|
|
|
#define BITS_PER_UNIT 8
|
|
#define SI_TYPE_SIZE (sizeof (SItype) * BITS_PER_UNIT)
|
|
|
|
typedef unsigned int UQItype __attribute__ ((mode(QI)));
|
|
typedef int SItype __attribute__ ((mode(SI)));
|
|
typedef unsigned int USItype __attribute__ ((mode(SI)));
|
|
typedef int DItype __attribute__ ((mode(DI)));
|
|
typedef int word_type __attribute__ ((mode(__word__)));
|
|
typedef unsigned int UDItype __attribute__ ((mode(DI)));
|
|
|
|
struct DIstruct {
|
|
SItype low, high;
|
|
};
|
|
|
|
typedef union {
|
|
struct DIstruct s;
|
|
DItype ll;
|
|
} DIunion;
|