rsp.c (cf9ce948f47640797bd19980e1d99c6d17d0bdc3) | rsp.c (98b32decc83ed3137e3ddbc918b102f8fc406b6d) |
---|---|
1/* 2 * The NFC Controller Interface is the communication protocol between an 3 * NFC Controller (NFCC) and a Device Host (DH). 4 * 5 * Copyright (C) 2011 Texas Instruments, Inc. 6 * 7 * Written by Ilan Elias <ilane@ti.com> 8 * --- 6 unchanged lines hidden (view full) --- 15 * as published by the Free Software Foundation 16 * 17 * This program is distributed in the hope that it will be useful, 18 * but WITHOUT ANY WARRANTY; without even the implied warranty of 19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 20 * GNU General Public License for more details. 21 * 22 * You should have received a copy of the GNU General Public License | 1/* 2 * The NFC Controller Interface is the communication protocol between an 3 * NFC Controller (NFCC) and a Device Host (DH). 4 * 5 * Copyright (C) 2011 Texas Instruments, Inc. 6 * 7 * Written by Ilan Elias <ilane@ti.com> 8 * --- 6 unchanged lines hidden (view full) --- 15 * as published by the Free Software Foundation 16 * 17 * This program is distributed in the hope that it will be useful, 18 * but WITHOUT ANY WARRANTY; without even the implied warranty of 19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 20 * GNU General Public License for more details. 21 * 22 * You should have received a copy of the GNU General Public License |
23 * along with this program; if not, write to the Free Software 24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | 23 * along with this program; if not, see <http://www.gnu.org/licenses/>. |
25 * 26 */ 27 28#define pr_fmt(fmt) KBUILD_MODNAME ": %s: " fmt, __func__ 29 30#include <linux/types.h> 31#include <linux/interrupt.h> 32#include <linux/bitops.h> --- 206 unchanged lines hidden --- | 24 * 25 */ 26 27#define pr_fmt(fmt) KBUILD_MODNAME ": %s: " fmt, __func__ 28 29#include <linux/types.h> 30#include <linux/interrupt.h> 31#include <linux/bitops.h> --- 206 unchanged lines hidden --- |