Advertisement
Guest User

Untitled

a guest
Jan 10th, 2014
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. #include <linux/module.h>
  2. #include <linux/io.h>
  3. #include <mach/hardware.h>
  4.  
  5. unsigned int __mxc_cpu_type;
  6. EXPORT_SYMBOL(__mxc_cpu_type);
  7.  
  8. void mxc_set_cpu_type(unsigned int type)
  9. {
  10. __mxc_cpu_type = type;
  11. }
  12.  
  13. static int __init setup_debug_uart(char *p)
  14. {
  15. uart_at_24 = 1;
  16. return 0;
  17. }
  18.  
  19. early_param("debug_uart", setup_debug_uart);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement