S
S
Schoolboy.2017-01-03 13:00:30
linux
Schoolboy., 2017-01-03 13:00:30

How to put a patch?

How to install this patch - https://git.kernel.org/cgit/linux/kernel/git/tiwai... ? Is there any manual?

Answer the question

In order to leave comments, you need to log in

4 answer(s)
C
CityCat4, 2017-01-03
@CityCat4

Hm. A manual on how to install a patch has already been given and a lot :)
A patch by reference is the most common diff. It is installed with the patch -p1 < patch.txt command.
In this case, you must be in the directory that contains the sound directory. The patch file must of course be downloaded first.

E
Eugene Wolf, 2017-01-03
@Wolfnsex

Is there any manual?

Why are you interested in the manual?
How to install a patch - described here or here or here or here .

S
Sergey Sokolov, 2017-06-11
@nak-alexey

The ternary operator returns a value . Is this not the same as the if .. else
condition ? expression_1 : expression_2 - this construction takes one or another value : expression_1 or expression_2.
You can not put in a ternary operator , continueor returnbecause these are not expressions that take some values, but control structures.
If you were choosing what to return, you could write return isItTrue ? A : B;
In your case of a choice between returnand, continueonly the good old is goodif .. else

C
Coder321, 2017-06-11
@Coder321

The ternary operator itself does a return, so calling return again will throw an error.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question