/
usr
/
src
/
kernels
/
4.18.0-553.157.1.el8_10.x86_64
/
include
/
media
/
/usr/src/kernels/4.18.0-553.157.1.el8_10.x86_64/include/media
mkdir
upload
Name
Size
Mode
Actions
davinci/
-
0755
rm
drv-intf/
-
0755
rm
i2c/
-
0755
rm
tpg/
-
0755
rm
cec-notifier.h
6678
0644
edit
dl
rm
cec-pin.h
2947
0644
edit
dl
rm
cec.h
18397
0644
edit
dl
rm
demux.h
23237
0644
edit
dl
rm
dmxdev.h
6034
0644
edit
dl
rm
dvb-usb-ids.h
18204
0644
edit
dl
rm
dvbdev.h
15089
0644
edit
dl
rm
dvb_ca_en50221.h
4455
0644
edit
dl
rm
dvb_demux.h
11033
0644
edit
dl
rm
dvb_frontend.h
29701
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
7838
0644
edit
dl
rm
frame_vector.h
1447
0644
edit
dl
rm
imx.h
396
0644
edit
dl
rm
media-device.h
16113
0644
edit
dl
rm
media-devnode.h
5814
0644
edit
dl
rm
media-entity.h
35421
0644
edit
dl
rm
rc-core.h
13211
0644
edit
dl
rm
rc-map.h
12806
0644
edit
dl
rm
rcar-fcp.h
1342
0644
edit
dl
rm
soc_camera.h
13300
0644
edit
dl
rm
tuner-types.h
7723
0644
edit
dl
rm
tuner.h
9059
0644
edit
dl
rm
tveeprom.h
3370
0644
edit
dl
rm
v4l2-async.h
7649
0644
edit
dl
rm
v4l2-clk.h
2144
0644
edit
dl
rm
v4l2-common.h
16538
0644
edit
dl
rm
v4l2-ctrls.h
39942
0644
edit
dl
rm
v4l2-dev.h
16109
0644
edit
dl
rm
v4l2-device.h
18127
0644
edit
dl
rm
v4l2-dv-timings.h
8887
0644
edit
dl
rm
v4l2-event.h
6277
0644
edit
dl
rm
v4l2-fh.h
4759
0644
edit
dl
rm
v4l2-flash-led-class.h
6034
0644
edit
dl
rm
v4l2-fwnode.h
14184
0644
edit
dl
rm
v4l2-image-sizes.h
864
0644
edit
dl
rm
v4l2-ioctl.h
32669
0644
edit
dl
rm
v4l2-mc.h
8213
0644
edit
dl
rm
v4l2-mediabus.h
6234
0644
edit
dl
rm
v4l2-mem2mem.h
20186
0644
edit
dl
rm
v4l2-rect.h
4650
0644
edit
dl
rm
v4l2-subdev.h
41579
0644
edit
dl
rm
videobuf-core.h
7148
0644
edit
dl
rm
videobuf-dma-contig.h
1062
0644
edit
dl
rm
videobuf-dma-sg.h
3009
0644
edit
dl
rm
videobuf-vmalloc.h
1319
0644
edit
dl
rm
videobuf2-core.h
45110
0644
edit
dl
rm
videobuf2-dma-contig.h
866
0644
edit
dl
rm
videobuf2-dma-sg.h
696
0644
edit
dl
rm
videobuf2-dvb.h
1863
0644
edit
dl
rm
videobuf2-memops.h
1101
0644
edit
dl
rm
videobuf2-v4l2.h
10719
0644
edit
dl
rm
videobuf2-vmalloc.h
509
0644
edit
dl
rm
vsp1.h
3288
0644
edit
dl
rm
Edit:
/usr/src/kernels/4.18.0-553.157.1.el8_10.x86_64/include/media/cec-notifier.h
(6678B)
/* SPDX-License-Identifier: GPL-2.0-only */ /* * cec-notifier.h - notify CEC drivers of physical address changes * * Copyright 2016 Russell King <rmk+kernel@arm.linux.org.uk> * Copyright 2016-2017 Cisco Systems, Inc. and/or its affiliates. All rights reserved. */ #ifndef LINUX_CEC_NOTIFIER_H #define LINUX_CEC_NOTIFIER_H #include <linux/err.h> #include <media/cec.h> struct device; struct edid; struct cec_adapter; struct cec_notifier; #if IS_REACHABLE(CONFIG_CEC_CORE) && IS_ENABLED(CONFIG_CEC_NOTIFIER) /** * cec_notifier_get_conn - find or create a new cec_notifier for the given * device and connector tuple. * @dev: device that sends the events. * @conn: the connector name from which the event occurs * * If a notifier for device @dev already exists, then increase the refcount * and return that notifier. * * If it doesn't exist, then allocate a new notifier struct and return a * pointer to that new struct. * * Return NULL if the memory could not be allocated. */ struct cec_notifier *cec_notifier_get_conn(struct device *dev, const char *conn); /** * cec_notifier_put - decrease refcount and delete when the refcount reaches 0. * @n: notifier */ void cec_notifier_put(struct cec_notifier *n); /** * cec_notifier_conn_register - find or create a new cec_notifier for the given * HDMI device and connector tuple. * @hdmi_dev: HDMI device that sends the events. * @conn_name: the connector name from which the event occurs. May be NULL * if there is always only one HDMI connector created by the HDMI device. * @conn_info: the connector info from which the event occurs (may be NULL) * * If a notifier for device @dev and connector @conn_name already exists, then * increase the refcount and return that notifier. * * If it doesn't exist, then allocate a new notifier struct and return a * pointer to that new struct. * * Return NULL if the memory could not be allocated. */ struct cec_notifier * cec_notifier_conn_register(struct device *hdmi_dev, const char *conn_name, const struct cec_connector_info *conn_info); /** * cec_notifier_conn_unregister - decrease refcount and delete when the * refcount reaches 0. * @n: notifier. If NULL, then this function does nothing. */ void cec_notifier_conn_unregister(struct cec_notifier *n); /** * cec_notifier_cec_adap_register - find or create a new cec_notifier for the * given device. * @hdmi_dev: HDMI device that sends the events. * @conn_name: the connector name from which the event occurs. May be NULL * if there is always only one HDMI connector created by the HDMI device. * @adap: the cec adapter that registered this notifier. * * If a notifier for device @dev and connector @conn_name already exists, then * increase the refcount and return that notifier. * * If it doesn't exist, then allocate a new notifier struct and return a * pointer to that new struct. * * Return NULL if the memory could not be allocated. */ struct cec_notifier * cec_notifier_cec_adap_register(struct device *hdmi_dev, const char *conn_name, struct cec_adapter *adap); /** * cec_notifier_cec_adap_unregister - decrease refcount and delete when the * refcount reaches 0. * @n: notifier. If NULL, then this function does nothing. * @adap: the cec adapter that registered this notifier. */ void cec_notifier_cec_adap_unregister(struct cec_notifier *n, struct cec_adapter *adap); /** * cec_notifier_set_phys_addr - set a new physical address. * @n: the CEC notifier * @pa: the CEC physical address * * Set a new CEC physical address. * Does nothing if @n == NULL. */ void cec_notifier_set_phys_addr(struct cec_notifier *n, u16 pa); /** * cec_notifier_set_phys_addr_from_edid - set parse the PA from the EDID. * @n: the CEC notifier * @edid: the struct edid pointer * * Parses the EDID to obtain the new CEC physical address and set it. * Does nothing if @n == NULL. */ void cec_notifier_set_phys_addr_from_edid(struct cec_notifier *n, const struct edid *edid); /** * cec_notifier_parse_hdmi_phandle - find the hdmi device from "hdmi-phandle" * @dev: the device with the "hdmi-phandle" device tree property * * Returns the device pointer referenced by the "hdmi-phandle" property. * Note that the refcount of the returned device is not incremented. * This device pointer is only used as a key value in the notifier * list, but it is never accessed by the CEC driver. */ struct device *cec_notifier_parse_hdmi_phandle(struct device *dev); #else static inline struct cec_notifier *cec_notifier_get_conn(struct device *dev, const char *conn) { /* A non-NULL pointer is expected on success */ return (struct cec_notifier *)0xdeadfeed; } static inline void cec_notifier_put(struct cec_notifier *n) { } static inline struct cec_notifier * cec_notifier_conn_register(struct device *hdmi_dev, const char *conn_name, const struct cec_connector_info *conn_info) { /* A non-NULL pointer is expected on success */ return (struct cec_notifier *)0xdeadfeed; } static inline void cec_notifier_conn_unregister(struct cec_notifier *n) { } static inline struct cec_notifier * cec_notifier_cec_adap_register(struct device *hdmi_dev, const char *conn_name, struct cec_adapter *adap) { /* A non-NULL pointer is expected on success */ return (struct cec_notifier *)0xdeadfeed; } static inline void cec_notifier_cec_adap_unregister(struct cec_notifier *n, struct cec_adapter *adap) { } static inline void cec_notifier_set_phys_addr(struct cec_notifier *n, u16 pa) { } static inline void cec_notifier_set_phys_addr_from_edid(struct cec_notifier *n, const struct edid *edid) { } static inline struct device *cec_notifier_parse_hdmi_phandle(struct device *dev) { return ERR_PTR(-ENODEV); } #endif /** * cec_notifier_get - find or create a new cec_notifier for the given device. * @dev: device that sends the events. * * If a notifier for device @dev already exists, then increase the refcount * and return that notifier. * * If it doesn't exist, then allocate a new notifier struct and return a * pointer to that new struct. * * Return NULL if the memory could not be allocated. */ static inline struct cec_notifier *cec_notifier_get(struct device *dev) { return cec_notifier_get_conn(dev, NULL); } /** * cec_notifier_phys_addr_invalidate() - set the physical address to INVALID * * @n: the CEC notifier * * This is a simple helper function to invalidate the physical * address. Does nothing if @n == NULL. */ static inline void cec_notifier_phys_addr_invalidate(struct cec_notifier *n) { cec_notifier_set_phys_addr(n, CEC_PHYS_ADDR_INVALID); } #endif
Save
cmd:
run