/
usr
/
src
/
linux-headers-5.15.0-190
/
include
/
media
/
/usr/src/linux-headers-5.15.0-190/include/media
mkdir
upload
Name
Size
Mode
Actions
davinci/
-
0755
rm
drv-intf/
-
0755
rm
i2c/
-
0755
rm
tpg/
-
0755
rm
cec-notifier.h
5146
0644
edit
dl
rm
cec-pin.h
2853
0644
edit
dl
rm
cec.h
16230
0644
edit
dl
rm
demux.h
23237
0644
edit
dl
rm
dmxdev.h
6034
0644
edit
dl
rm
dvb-usb-ids.h
18614
0644
edit
dl
rm
dvbdev.h
14859
0644
edit
dl
rm
dvb_ca_en50221.h
4455
0644
edit
dl
rm
dvb_demux.h
11033
0644
edit
dl
rm
dvb_frontend.h
30751
0644
edit
dl
rm
dvb_math.h
1811
0644
edit
dl
rm
dvb_net.h
2583
0644
edit
dl
rm
dvb_ringbuffer.h
8524
0644
edit
dl
rm
dvb_vb2.h
7912
0644
edit
dl
rm
frame_vector.h
1447
0644
edit
dl
rm
hevc-ctrls.h
9098
0644
edit
dl
rm
imx.h
190
0644
edit
dl
rm
ipu-isys.h
884
0644
edit
dl
rm
media-dev-allocator.h
2261
0644
edit
dl
rm
media-device.h
17401
0644
edit
dl
rm
media-devnode.h
5415
0644
edit
dl
rm
media-entity.h
36306
0644
edit
dl
rm
media-request.h
12245
0644
edit
dl
rm
rc-core.h
12610
0644
edit
dl
rm
rc-map.h
14704
0644
edit
dl
rm
rcar-fcp.h
1127
0644
edit
dl
rm
tuner-types.h
7723
0644
edit
dl
rm
tuner.h
8603
0644
edit
dl
rm
tveeprom.h
3370
0644
edit
dl
rm
v4l2-async.h
11448
0644
edit
dl
rm
v4l2-common.h
19123
0644
edit
dl
rm
v4l2-ctrls.h
50854
0644
edit
dl
rm
v4l2-dev.h
16921
0644
edit
dl
rm
v4l2-device.h
18964
0644
edit
dl
rm
v4l2-dv-timings.h
9543
0644
edit
dl
rm
v4l2-event.h
6130
0644
edit
dl
rm
v4l2-fh.h
4317
0644
edit
dl
rm
v4l2-flash-led-class.h
5888
0644
edit
dl
rm
v4l2-fwnode.h
20279
0644
edit
dl
rm
v4l2-h264.h
2921
0644
edit
dl
rm
v4l2-image-sizes.h
827
0644
edit
dl
rm
v4l2-ioctl.h
34112
0644
edit
dl
rm
v4l2-jpeg.h
5207
0644
edit
dl
rm
v4l2-mc.h
7669
0644
edit
dl
rm
v4l2-mediabus.h
7686
0644
edit
dl
rm
v4l2-mem2mem.h
29441
0644
edit
dl
rm
v4l2-rect.h
5852
0644
edit
dl
rm
v4l2-subdev.h
46004
0644
edit
dl
rm
videobuf-core.h
6974
0644
edit
dl
rm
videobuf-dma-contig.h
909
0644
edit
dl
rm
videobuf-dma-sg.h
2856
0644
edit
dl
rm
videobuf-vmalloc.h
1166
0644
edit
dl
rm
videobuf2-core.h
49407
0644
edit
dl
rm
videobuf2-dma-contig.h
883
0644
edit
dl
rm
videobuf2-dma-sg.h
698
0644
edit
dl
rm
videobuf2-dvb.h
1863
0644
edit
dl
rm
videobuf2-memops.h
1101
0644
edit
dl
rm
videobuf2-v4l2.h
14347
0644
edit
dl
rm
videobuf2-vmalloc.h
509
0644
edit
dl
rm
vsp1.h
3652
0644
edit
dl
rm
Edit:
/usr/src/linux-headers-5.15.0-190/include/media/media-dev-allocator.h
(2261B)
/* SPDX-License-Identifier: GPL-2.0+ */ /* * media-dev-allocator.h - Media Controller Device Allocator API * * Copyright (c) 2019 Shuah Khan <shuah@kernel.org> * * Credits: Suggested by Laurent Pinchart <laurent.pinchart@ideasonboard.com> */ /* * This file adds a global ref-counted Media Controller Device Instance API. * A system wide global media device list is managed and each media device * includes a kref count. The last put on the media device releases the media * device instance. */ #ifndef _MEDIA_DEV_ALLOCATOR_H #define _MEDIA_DEV_ALLOCATOR_H struct usb_device; #if defined(CONFIG_MEDIA_CONTROLLER) && IS_ENABLED(CONFIG_USB) /** * media_device_usb_allocate() - Allocate and return struct &media device * * @udev: struct &usb_device pointer * @module_name: should be filled with %KBUILD_MODNAME * @owner: struct module pointer %THIS_MODULE for the driver. * %THIS_MODULE is null for a built-in driver. * It is safe even when %THIS_MODULE is null. * * This interface should be called to allocate a Media Device when multiple * drivers share usb_device and the media device. This interface allocates * &media_device structure and calls media_device_usb_init() to initialize * it. * */ struct media_device *media_device_usb_allocate(struct usb_device *udev, const char *module_name, struct module *owner); /** * media_device_delete() - Release media device. Calls kref_put(). * * @mdev: struct &media_device pointer * @module_name: should be filled with %KBUILD_MODNAME * @owner: struct module pointer %THIS_MODULE for the driver. * %THIS_MODULE is null for a built-in driver. * It is safe even when %THIS_MODULE is null. * * This interface should be called to put Media Device Instance kref. */ void media_device_delete(struct media_device *mdev, const char *module_name, struct module *owner); #else static inline struct media_device *media_device_usb_allocate( struct usb_device *udev, const char *module_name, struct module *owner) { return NULL; } static inline void media_device_delete( struct media_device *mdev, const char *module_name, struct module *owner) { } #endif /* CONFIG_MEDIA_CONTROLLER && CONFIG_USB */ #endif /* _MEDIA_DEV_ALLOCATOR_H */
Save
cmd:
run