2020-08-26 07:03:09 +00:00
|
|
|
.. SPDX-License-Identifier: GFDL-1.1-no-invariants-or-later
|
2020-09-24 14:56:00 +00:00
|
|
|
.. c:namespace:: DTV.fe
|
2018-08-30 14:15:26 +00:00
|
|
|
|
2016-06-30 13:18:56 +00:00
|
|
|
.. _FE_GET_INFO:
|
|
|
|
|
|
|
|
|
|
*****************
|
|
|
|
|
ioctl FE_GET_INFO
|
|
|
|
|
*****************
|
|
|
|
|
|
2016-07-05 18:14:35 +00:00
|
|
|
Name
|
2016-07-05 10:58:48 +00:00
|
|
|
====
|
2016-06-30 13:18:56 +00:00
|
|
|
|
2017-09-01 16:28:16 +00:00
|
|
|
FE_GET_INFO - Query Digital TV frontend capabilities and returns information
|
|
|
|
|
about the - front-end. This call only requires read-only access to the device.
|
2016-06-30 13:18:56 +00:00
|
|
|
|
2016-07-05 18:14:35 +00:00
|
|
|
Synopsis
|
2016-06-30 13:18:56 +00:00
|
|
|
========
|
|
|
|
|
|
2020-09-24 14:56:00 +00:00
|
|
|
.. c:macro:: FE_GET_INFO
|
2016-06-30 13:18:56 +00:00
|
|
|
|
2020-09-24 14:56:00 +00:00
|
|
|
``int ioctl(int fd, FE_GET_INFO, struct dvb_frontend_info *argp)``
|
2016-07-05 10:58:48 +00:00
|
|
|
|
2016-07-05 18:14:35 +00:00
|
|
|
Arguments
|
2016-06-30 13:18:56 +00:00
|
|
|
=========
|
|
|
|
|
|
|
|
|
|
``fd``
|
2020-09-24 14:56:00 +00:00
|
|
|
File descriptor returned by :c:func:`open()`.
|
2016-06-30 13:18:56 +00:00
|
|
|
|
|
|
|
|
``argp``
|
2020-07-07 19:17:44 +00:00
|
|
|
pointer to struct :c:type:`dvb_frontend_info`
|
2016-06-30 13:18:56 +00:00
|
|
|
|
2016-07-05 18:14:35 +00:00
|
|
|
Description
|
2016-06-30 13:18:56 +00:00
|
|
|
===========
|
|
|
|
|
|
2017-09-01 16:21:49 +00:00
|
|
|
All Digital TV frontend devices support the :ref:`FE_GET_INFO` ioctl. It is
|
|
|
|
|
used to identify kernel devices compatible with this specification and to
|
2016-06-30 13:18:56 +00:00
|
|
|
obtain information about driver and hardware capabilities. The ioctl
|
|
|
|
|
takes a pointer to dvb_frontend_info which is filled by the driver.
|
|
|
|
|
When the driver is not compatible with this specification the ioctl
|
|
|
|
|
returns an error.
|
|
|
|
|
|
|
|
|
|
frontend capabilities
|
|
|
|
|
=====================
|
|
|
|
|
|
|
|
|
|
Capabilities describe what a frontend can do. Some capabilities are
|
|
|
|
|
supported only on some specific frontend types.
|
|
|
|
|
|
2017-08-30 17:45:20 +00:00
|
|
|
The frontend capabilities are described at :c:type:`fe_caps`.
|
2016-07-05 14:36:55 +00:00
|
|
|
|
2016-07-05 18:14:35 +00:00
|
|
|
Return Value
|
2016-07-05 14:36:55 +00:00
|
|
|
============
|
|
|
|
|
|
2017-09-01 16:15:43 +00:00
|
|
|
On success 0 is returned.
|
|
|
|
|
|
|
|
|
|
On error -1 is returned, and the ``errno`` variable is set
|
|
|
|
|
appropriately.
|
|
|
|
|
|
|
|
|
|
Generic error codes are described at the
|
2016-07-05 14:36:55 +00:00
|
|
|
:ref:`Generic Error Codes <gen-errors>` chapter.
|