Correct a typo from one of the preceding commits.
This commit is contained in:
parent
a773f9412a
commit
840c5935a3
|
@ -499,7 +499,7 @@ static int nrf24l01_irqhandler(int irq, FAR void *context, FAR void *arg)
|
|||
|
||||
/* If RX is enabled we delegate the actual work to bottom-half handler */
|
||||
|
||||
work_queue(HPWORK, &priv->irq_work, nrf24l01_worker, dev, 0);
|
||||
work_queue(HPWORK, &dev->irq_work, nrf24l01_worker, dev, 0);
|
||||
#else
|
||||
|
||||
/* Otherwise we simply wake up the send function */
|
||||
|
|
|
@ -43,26 +43,6 @@
|
|||
|
||||
#include "irq/irq.h"
|
||||
|
||||
/****************************************************************************
|
||||
* Pre-processor Definitions
|
||||
****************************************************************************/
|
||||
|
||||
/****************************************************************************
|
||||
* Private Type Declarations
|
||||
****************************************************************************/
|
||||
|
||||
/****************************************************************************
|
||||
* Public Data
|
||||
****************************************************************************/
|
||||
|
||||
/****************************************************************************
|
||||
* Private Data
|
||||
****************************************************************************/
|
||||
|
||||
/****************************************************************************
|
||||
* Private Functions
|
||||
****************************************************************************/
|
||||
|
||||
/****************************************************************************
|
||||
* Public Functions
|
||||
****************************************************************************/
|
||||
|
|
Loading…
Reference in New Issue