@@ -159,7 +159,7 @@ static ocxl_err irq_allocate(ocxl_afu * afu, ocxl_irq * irq, void *info)
159159 * @retval OCXL_OK if the IRQs have been allocated
160160 * @retval OCXL_NO_MEM if a memory allocation error occurred
161161 */
162- ocxl_err ocxl_afu_irq_alloc (ocxl_afu_h afu , void * info , ocxl_irq_h * irq )
162+ ocxl_err ocxl_irq_alloc (ocxl_afu_h afu , void * info , ocxl_irq_h * irq )
163163{
164164 ocxl_afu * my_afu = (ocxl_afu * ) afu ;
165165
@@ -193,7 +193,7 @@ ocxl_err ocxl_afu_irq_alloc(ocxl_afu_h afu, void *info, ocxl_irq_h * irq)
193193 * @param irq the IRQ to get the handle of
194194 * @return the handle, or 0 if the handle is invalid
195195 */
196- uint64_t ocxl_afu_irq_get_handle (ocxl_afu_h afu , ocxl_irq_h irq )
196+ uint64_t ocxl_irq_get_handle (ocxl_afu_h afu , ocxl_irq_h irq )
197197{
198198 ocxl_afu * my_afu = (ocxl_afu * ) afu ;
199199
@@ -213,7 +213,7 @@ uint64_t ocxl_afu_irq_get_handle(ocxl_afu_h afu, ocxl_irq_h irq)
213213 * @param irq the IRQ to get the descriptor of
214214 * @return the handle, or -1 if the descriptor is invalid
215215 */
216- int ocxl_afu_irq_get_descriptor (ocxl_afu_h afu , ocxl_irq_h irq )
216+ int ocxl_irq_get_descriptor (ocxl_afu_h afu , ocxl_irq_h irq )
217217{
218218 ocxl_afu * my_afu = (ocxl_afu * ) afu ;
219219
@@ -228,13 +228,7 @@ int ocxl_afu_irq_get_descriptor(ocxl_afu_h afu, ocxl_irq_h irq)
228228/**
229229 * Get a descriptor that will trigger a poll when an AFU event occurs
230230 *
231- <<<<<<< HEAD
232- * When triggered, call ocxl_read_afu_event() to extract the event information
233- =======
234231 * When triggered, call ocxl_afu_event_check() to extract the event information.
235- *
236- * @see ocxl_afu_event_check()
237- >>>>>>> 4339b2e... Make ocxl_read_afu_event internal
238232 *
239233 * @pre the AFU has been opened
240234 * @see ocxl_afu_event_check()
0 commit comments