Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v5.19 19 lines 495 B view raw
1/* SPDX-License-Identifier: GPL-2.0 */ 2/* 3 * CAAM public-level include definitions for the JobR backend 4 * 5 * Copyright 2008-2011 Freescale Semiconductor, Inc. 6 */ 7 8#ifndef JR_H 9#define JR_H 10 11/* Prototypes for backend-level services exposed to APIs */ 12struct device *caam_jr_alloc(void); 13void caam_jr_free(struct device *rdev); 14int caam_jr_enqueue(struct device *dev, u32 *desc, 15 void (*cbk)(struct device *dev, u32 *desc, u32 status, 16 void *areq), 17 void *areq); 18 19#endif /* JR_H */