Fix some conditional logic in last work queue repartitioning change

This commit is contained in:
Gregory Nutt 2014-10-10 08:47:41 -06:00
parent 1afc9773ac
commit 2015fd76e2
2 changed files with 1 additions and 4 deletions

View File

@ -80,7 +80,7 @@
* by calling work_queue() again. * by calling work_queue() again.
* *
* Input parameters: * Input parameters:
* qid - The work queue ID (must be USRWORK) * qid - The work queue ID (must be HPWORK or LPWORK)
* work - The previously queue work structure to cancel * work - The previously queue work structure to cancel
* *
* Returned Value: * Returned Value:

View File

@ -101,8 +101,6 @@
* *
****************************************************************************/ ****************************************************************************/
#if defined(CONFIG_SCHED_USRWORK) && !defined(__KERNEL__)
int work_queue(int qid, FAR struct work_s *work, worker_t worker, int work_queue(int qid, FAR struct work_s *work, worker_t worker,
FAR void *arg, uint32_t delay) FAR void *arg, uint32_t delay)
{ {
@ -129,5 +127,4 @@ int work_queue(int qid, FAR struct work_s *work, worker_t worker,
} }
} }
#endif /* CONFIG_SCHED_USRWORK && !__KERNEL__ */
#endif /* CONFIG_SCHED_WORKQUEUE */ #endif /* CONFIG_SCHED_WORKQUEUE */