linux-stable/arch/blackfin/include/asm/sigcontext.h
Robin Getz 96f1050d3d Blackfin: mass clean up of copyright/licensing info
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>
2009-10-07 04:36:26 -04:00

61 lines
1.3 KiB
C
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
 * Copyright 2004-2008 Analog Devices Inc.
 *
 * Licensed under the GPL-2 or later.
 */
#ifndef _ASM_BLACKFIN_SIGCONTEXT_H
#define _ASM_BLACKFIN_SIGCONTEXT_H
/* Add new entries at the end of the structure only. */
struct sigcontext {
unsigned long sc_r0;
unsigned long sc_r1;
unsigned long sc_r2;
unsigned long sc_r3;
unsigned long sc_r4;
unsigned long sc_r5;
unsigned long sc_r6;
unsigned long sc_r7;
unsigned long sc_p0;
unsigned long sc_p1;
unsigned long sc_p2;
unsigned long sc_p3;
unsigned long sc_p4;
unsigned long sc_p5;
unsigned long sc_usp;
unsigned long sc_a0w;
unsigned long sc_a1w;
unsigned long sc_a0x;
unsigned long sc_a1x;
unsigned long sc_astat;
unsigned long sc_rets;
unsigned long sc_pc;
unsigned long sc_retx;
unsigned long sc_fp;
unsigned long sc_i0;
unsigned long sc_i1;
unsigned long sc_i2;
unsigned long sc_i3;
unsigned long sc_m0;
unsigned long sc_m1;
unsigned long sc_m2;
unsigned long sc_m3;
unsigned long sc_l0;
unsigned long sc_l1;
unsigned long sc_l2;
unsigned long sc_l3;
unsigned long sc_b0;
unsigned long sc_b1;
unsigned long sc_b2;
unsigned long sc_b3;
unsigned long sc_lc0;
unsigned long sc_lc1;
unsigned long sc_lt0;
unsigned long sc_lt1;
unsigned long sc_lb0;
unsigned long sc_lb1;
unsigned long sc_seqstat;
};
#endif