Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7347081e authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab
Browse files

doc-rst: linux_tv: simplify references



There are lots of internal references in the form:
	:ref:`foo <foo>`

Simplify them to be just: :ref:`foo`.

Patch generated via this small script:

for j in $(find . -name '*'); do echo $j; perl -ne 'if (m/\`(\S+)\s*\<(\S+)\>\`/) { if (!($1=~'http') && $1 eq $2) { s,\s*\<(\S+)\>,,; } } print $_' <$j >a && mv a $j; done

Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@s-opensource.com>
parent af4a4d0d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -20,7 +20,7 @@ dishes were already legacy in 2004.
SYNOPSIS

int ioctl(int fd, int request =
:ref:`FE_DISHNETWORK_SEND_LEGACY_CMD <FE_DISHNETWORK_SEND_LEGACY_CMD>`,
:ref:`FE_DISHNETWORK_SEND_LEGACY_CMD`,
unsigned long cmd);

PARAMETERS
+1 −1
Original line number Diff line number Diff line
@@ -38,7 +38,7 @@ PARAMETERS

       -  int request

       -  Equals :ref:`FE_GET_EVENT <FE_GET_EVENT>` for this command.
       -  Equals :ref:`FE_GET_EVENT` for this command.

    -  .. row 3

+2 −2
Original line number Diff line number Diff line
@@ -14,7 +14,7 @@ this command, read-only access to the device is sufficient.
SYNOPSIS

int ioctl(int fd, int request =
:ref:`FE_GET_FRONTEND <FE_GET_FRONTEND>`, struct
:ref:`FE_GET_FRONTEND`, struct
dvb_frontend_parameters *p);

PARAMETERS
@@ -36,7 +36,7 @@ PARAMETERS

       -  int request

       -  Equals :ref:`FE_SET_FRONTEND <FE_SET_FRONTEND>` for this
       -  Equals :ref:`FE_SET_FRONTEND` for this
          command.

    -  .. row 3
+2 −2
Original line number Diff line number Diff line
@@ -14,7 +14,7 @@ access to the device is sufficient.

SYNOPSIS

int ioctl(int fd, int request = :ref:`FE_READ_BER <FE_READ_BER>`,
int ioctl(int fd, int request = :ref:`FE_READ_BER`,
uint32_t *ber);

PARAMETERS
@@ -36,7 +36,7 @@ PARAMETERS

       -  int request

       -  Equals :ref:`FE_READ_BER <FE_READ_BER>` for this command.
       -  Equals :ref:`FE_READ_BER` for this command.

    -  .. row 3

+2 −2
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@ to the device is sufficient.
SYNOPSIS

int ioctl( int fd, int request =
:ref:`FE_READ_SIGNAL_STRENGTH <FE_READ_SIGNAL_STRENGTH>`,
:ref:`FE_READ_SIGNAL_STRENGTH`,
uint16_t *strength);

PARAMETERS
@@ -38,7 +38,7 @@ PARAMETERS
       -  int request

       -  Equals
          :ref:`FE_READ_SIGNAL_STRENGTH <FE_READ_SIGNAL_STRENGTH>`
          :ref:`FE_READ_SIGNAL_STRENGTH`
          for this command.

    -  .. row 3
Loading