usbatm cxacru.c,1.14,1.15
kagan at infradead.org
kagan at infradead.org
Wed Feb 16 07:10:14 EST 2005
Update of /home/cvs/usbatm
In directory phoenix.infradead.org:/tmp/cvs-serv31807
Modified Files:
cxacru.c
Log Message:
Fix the preamble: copyrights, authorship, credits, includes
Index: cxacru.c
===================================================================
RCS file: /home/cvs/usbatm/cxacru.c,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- cxacru.c 10 Feb 2005 23:20:54 -0000 1.14
+++ cxacru.c 16 Feb 2005 12:10:09 -0000 1.15
@@ -1,7 +1,10 @@
/******************************************************************************
- * cxacru.c - driver for USB xDSL modems based on
+ * cxacru.c - driver for USB ADSL modems based on
* Conexant AccessRunner chipset
*
+ * Copyright (C) 2004 David Woodhouse, Duncan Sands, Roman Kagan
+ * Copyright (C) 2005 Duncan Sands, Roman Kagan (rkagan % mail ! ru)
+ *
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the Free
* Software Foundation; either version 2 of the License, or (at your option)
@@ -18,22 +21,20 @@
*
******************************************************************************/
+/*
+ * Credit is due for Josep Comas, who created the original patch to speedtch.c
+ * to support the different padding used by the AccessRunner (now generalized
+ * into usbatm), and the userspace firmware loading utility.
+ */
+
#include <linux/module.h>
#include <linux/moduleparam.h>
-#include <linux/gfp.h>
#include <linux/kernel.h>
-#include <linux/sched.h>
#include <linux/timer.h>
#include <linux/errno.h>
#include <linux/slab.h>
-#include <linux/wait.h>
-#include <asm/processor.h>
-#include <asm/uaccess.h>
-#include <linux/smp_lock.h>
-#include <linux/interrupt.h>
-#include <linux/atm.h>
-#include <linux/atmdev.h>
#include <linux/init.h>
+#include <linux/device.h> /* FIXME: linux/firmware.h should include it itself */
#include <linux/firmware.h>
#include "usbatm.h"
@@ -42,9 +43,9 @@
# define USE_FW_LOADER
#endif
-#define DRIVER_AUTHOR "Roman Kagan, Josep Comas, David Woodhouse, Duncan Sands"
-#define DRIVER_VERSION "0.1"
-#define DRIVER_DESC "Conexant AccessRunner USB driver version " DRIVER_VERSION
+#define DRIVER_AUTHOR "Roman Kagan, David Woodhouse, Duncan Sands"
+#define DRIVER_VERSION "0.2"
+#define DRIVER_DESC "Conexant AccessRunner ADSL USB modem driver"
static const char cxacru_driver_name[] = "cxacru";
More information about the Usbatm-commits
mailing list