patch-2.4.10 linux/drivers/char/dsp56k.c
Next file: linux/drivers/char/dtlk.c
Previous file: linux/drivers/char/ds1620.c
Back to the patch index
Back to the overall index
- Lines: 24
- Date:
Mon Sep 10 08:06:32 2001
- Orig file:
v2.4.9/linux/drivers/char/dsp56k.c
- Orig date:
Mon Aug 27 12:41:40 2001
diff -u --recursive --new-file v2.4.9/linux/drivers/char/dsp56k.c linux/drivers/char/dsp56k.c
@@ -69,7 +69,7 @@
{ \
long i, t, m; \
while (count > 0) { \
- m = min(unsigned long, count, maxio); \
+ m = min_t(unsigned long, count, maxio); \
for (i = 0; i < m; i++) { \
for (t = 0; t < timeout && !ENABLE; t++) \
wait_some(HZ/50); \
@@ -502,7 +502,7 @@
static devfs_handle_t devfs_handle;
-static const char banner[] __initdata = KERN_INFO "DSP56k driver installed\n";
+static char banner[] __initdata = KERN_INFO "DSP56k driver installed\n";
static int __init dsp56k_init_driver(void)
{
@@ -531,3 +531,5 @@
devfs_unregister(devfs_handle);
}
module_exit(dsp56k_cleanup_driver);
+
+MODULE_LICENSE("GPL");
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)