Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <linux/module.h>
- #include <linux/io.h>
- #include <mach/hardware.h>
- unsigned int __mxc_cpu_type;
- EXPORT_SYMBOL(__mxc_cpu_type);
- void mxc_set_cpu_type(unsigned int type)
- {
- __mxc_cpu_type = type;
- }
- static int __init setup_debug_uart(char *p)
- {
- uart_at_24 = 1;
- return 0;
- }
- early_param("debug_uart", setup_debug_uart);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement