r592.c (94bd217e2d683719ab21a4ac117d8a1b91cbedc9) | r592.c (90ab5ee94171b3e28de6bb42ee30b527014e0be7) |
---|---|
1/* 2 * Copyright (C) 2010 - Maxim Levitsky 3 * driver for Ricoh memstick readers 4 * 5 * This program is free software; you can redistribute it and/or modify 6 * it under the terms of the GNU General Public License version 2 as 7 * published by the Free Software Foundation. 8 */ --- 9 unchanged lines hidden (view full) --- 18#include <linux/slab.h> 19#include <linux/kthread.h> 20#include <linux/sched.h> 21#include <linux/highmem.h> 22#include <asm/byteorder.h> 23#include <linux/swab.h> 24#include "r592.h" 25 | 1/* 2 * Copyright (C) 2010 - Maxim Levitsky 3 * driver for Ricoh memstick readers 4 * 5 * This program is free software; you can redistribute it and/or modify 6 * it under the terms of the GNU General Public License version 2 as 7 * published by the Free Software Foundation. 8 */ --- 9 unchanged lines hidden (view full) --- 18#include <linux/slab.h> 19#include <linux/kthread.h> 20#include <linux/sched.h> 21#include <linux/highmem.h> 22#include <asm/byteorder.h> 23#include <linux/swab.h> 24#include "r592.h" 25 |
26static int r592_enable_dma = 1; | 26static bool r592_enable_dma = 1; |
27static int debug; 28 29static const char *tpc_names[] = { 30 "MS_TPC_READ_MG_STATUS", 31 "MS_TPC_READ_LONG_DATA", 32 "MS_TPC_READ_SHORT_DATA", 33 "MS_TPC_READ_REG", 34 "MS_TPC_READ_QUAD_DATA", --- 874 unchanged lines hidden --- | 27static int debug; 28 29static const char *tpc_names[] = { 30 "MS_TPC_READ_MG_STATUS", 31 "MS_TPC_READ_LONG_DATA", 32 "MS_TPC_READ_SHORT_DATA", 33 "MS_TPC_READ_REG", 34 "MS_TPC_READ_QUAD_DATA", --- 874 unchanged lines hidden --- |