Advertisement
Guest User

Untitled

a guest
Jun 30th, 2010
698
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.06 KB | None | 0 0
  1.  
  2. insmod /system/lib/modules/bcm4329.ko
  3. insmod: can't insert '/system/lib/modules/bcm4329.ko': invalid parameter
  4.  
  5. dmesg gives
  6.  
  7. [ 1864.682981] dhd_module_init: platform_driver_register timeout
  8.  
  9.  
  10. from
  11.  
  12.  
  13. drivers/net/wireless/bcm4329/dhd_linux.c
  14.  
  15.  
  16. /* Call customer gpio to turn on power with WL_REG_ON signal */
  17. dhd_customer_gpio_wlan_ctrl(WLAN_POWER_ON);
  18.  
  19. #if defined(CUSTOMER_HW2) && defined(CONFIG_WIFI_CONTROL_FUNC)
  20. sema_init(&wifi_control_sem, 0);
  21.  
  22. error = wifi_add_dev();
  23. if (error) {
  24. DHD_ERROR(("%s: platform_driver_register failed\n", __FUNCTION__));
  25. goto fail_0;
  26. }
  27.  
  28.  
  29. /* Waiting callback after platform_driver_register is done or exit with error */
  30. if (down_timeout(&wifi_control_sem, msecs_to_jiffies(5000)) != 0) {
  31. error = -EINVAL;
  32. DHD_ERROR(("%s: platform_driver_register timeout\n", __FUNCTION__));
  33. goto fail_1;
  34. }
  35. #endif /* #if defined(CUSTOMER_HW2) && defined(CONFIG_WIFI_CONTROL_FUNC) */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement