minor changes for the modified function create_kernel_task

This commit is contained in:
Stefan Lankes 2011-08-26 03:20:35 -07:00
parent 5e047d6b96
commit 65d7286778

View file

@ -263,7 +263,7 @@ __inline int mmnif_device_schedule()
bthread_create(&polling_thread,NULL,mmnif_poll,NULL);
return NULL;
#else
create_kernel_task(&polling_thread,mmnif_poll,NULL);
create_kernel_task(&polling_thread,mmnif_poll,NULL, NORMAL_PRIO);
return NULL;
#endif
}