Fixed function call.
authorFlorian Pose <fp@igh-essen.com>
Fri, 08 Jan 2010 13:13:50 +0100
changeset 1614 2f362d2b6d6e
parent 1613 070b4b420ab1
child 1615 020ad9ad3afb
Fixed function call.
examples/tty/serial.c
examples/tty/serial.h
--- a/examples/tty/serial.c	Fri Jan 08 13:10:12 2010 +0100
+++ b/examples/tty/serial.c	Fri Jan 08 13:13:50 2010 +0100
@@ -423,7 +423,7 @@
 
 /*****************************************************************************/
 
-void cleanup_serial_devices(void)
+void free_serial_devices(void)
 {
     printk(KERN_INFO PFX "Cleaning up serial devices...\n");
 
--- a/examples/tty/serial.h	Fri Jan 08 13:10:12 2010 +0100
+++ b/examples/tty/serial.h	Fri Jan 08 13:13:50 2010 +0100
@@ -29,6 +29,7 @@
 
 int create_serial_devices(ec_master_t *, ec_domain_t *);
 void free_serial_devices(void);
+
 void run_serial_devices(u8 *);
 
 /*****************************************************************************/