diff options
| author | Khem Raj <raj.khem@gmail.com> | 2018-04-24 12:33:45 -0700 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-05-15 10:56:49 +0100 |
| commit | 4fa8f93e6a90f62499715d55262f931f417c7cde (patch) | |
| tree | 852c013b2ccc1fb52005e5e89ae9c09b04d0ab33 /meta/recipes-multimedia/alsa/alsa-tools/0002-Fix-clang-Wreserved-user-defined-literal-warnings.patch | |
| parent | d3081fc0a237c10478ff95709fab03590811dd81 (diff) | |
| download | poky-4fa8f93e6a90f62499715d55262f931f417c7cde.tar.gz | |
alsa-tools: Update to 1.1.6
License-Update: FSF address updated in hdsploader/COPYING and ld10k1/COPYING.LIB
Fix built with clang along the way
Package python dependent tools into a separate package
(From OE-Core rev: 2a39c8529332c4ea0f8edcac7cfdfb410ca3fb5b)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-multimedia/alsa/alsa-tools/0002-Fix-clang-Wreserved-user-defined-literal-warnings.patch')
| -rw-r--r-- | meta/recipes-multimedia/alsa/alsa-tools/0002-Fix-clang-Wreserved-user-defined-literal-warnings.patch | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/meta/recipes-multimedia/alsa/alsa-tools/0002-Fix-clang-Wreserved-user-defined-literal-warnings.patch b/meta/recipes-multimedia/alsa/alsa-tools/0002-Fix-clang-Wreserved-user-defined-literal-warnings.patch new file mode 100644 index 0000000000..2290915eab --- /dev/null +++ b/meta/recipes-multimedia/alsa/alsa-tools/0002-Fix-clang-Wreserved-user-defined-literal-warnings.patch | |||
| @@ -0,0 +1,28 @@ | |||
| 1 | From 2e48e4045e1e951433da0ca4b1e49798eedde14f Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Khem Raj <raj.khem@gmail.com> | ||
| 3 | Date: Tue, 24 Apr 2018 12:21:18 -0700 | ||
| 4 | Subject: [PATCH] Fix clang -Wreserved-user-defined-literal warnings | ||
| 5 | |||
| 6 | | us428control.cc:66:18: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal] | ||
| 7 | | printf("usage: "PROGNAME" [-v verbosity_level 0..2] [-c card] [-D device] [-u usb-device] [-m mode]\n"); | ||
| 8 | | ^ | ||
| 9 | |||
| 10 | Upstream-Status: Submitted [https://patchwork.kernel.org/patch/10360805/] | ||
| 11 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
| 12 | --- | ||
| 13 | us428control/us428control.cc | 2 +- | ||
| 14 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
| 15 | |||
| 16 | diff --git a/us428control/us428control.cc b/us428control/us428control.cc | ||
| 17 | index e839bf4..8cb3c42 100644 | ||
| 18 | --- a/us428control/us428control.cc | ||
| 19 | +++ b/us428control/us428control.cc | ||
| 20 | @@ -63,7 +63,7 @@ static void usage(void) | ||
| 21 | { | ||
| 22 | printf("Tascam US-428 Control\n"); | ||
| 23 | printf("version %s\n", VERSION); | ||
| 24 | - printf("usage: "PROGNAME" [-v verbosity_level 0..2] [-c card] [-D device] [-u usb-device] [-m mode]\n"); | ||
| 25 | + printf("usage: " PROGNAME " [-v verbosity_level 0..2] [-c card] [-D device] [-u usb-device] [-m mode]\n"); | ||
| 26 | printf("mode is one of (us224, us428, mixxx)\n"); | ||
| 27 | } | ||
| 28 | /* | ||
