zephyr/subsys/usb/usb_work_q.c
Peter Bigot 2ac596b91a usb: conversion of k_work API
Replace all existing deprecated API with the recommended alternative.

Be aware that this does not address architectural errors in the use
of the work API.

Fixes #34092

Signed-off-by: Peter Bigot <peter.bigot@nordicsemi.no>
Signed-off-by: Johann Fischer <johann.fischer@nordicsemi.no>
2021-04-15 12:29:34 -04:00

31 lines
733 B
C

/*
* Copyright (c) 2020 Nordic Semiconductor ASA
* Copyright (c) 2018 Intel Corporation
* Copyright (c) 2016 Wind River Systems, Inc.
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <kernel.h>
#include <init.h>
#include <usb_work_q.h>
K_KERNEL_STACK_DEFINE(z_usb_work_q_stack, CONFIG_USB_WORKQUEUE_STACK_SIZE);
struct k_work_q z_usb_work_q;
static int z_usb_work_q_init(const struct device *dev)
{
ARG_UNUSED(dev);
k_work_queue_start(&z_usb_work_q,
z_usb_work_q_stack,
K_KERNEL_STACK_SIZEOF(z_usb_work_q_stack),
CONFIG_USB_WORKQUEUE_PRIORITY, NULL);
k_thread_name_set(&z_usb_work_q.thread, "usbworkq");
return 0;
}
SYS_INIT(z_usb_work_q_init, POST_KERNEL, CONFIG_KERNEL_INIT_PRIORITY_DEFAULT);