<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in Makefile</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>dfc58f46 - tools: iio: rm .*.cmd when make clean</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/iio/Makefile#dfc58f46</link>
        <description>tools: iio: rm .*.cmd when make cleanrm .*.cmd when make cleanSigned-off-by: zhangjiao &lt;zhangjiao2@cmss.chinamobile.com&gt;Link: https://patch.msgid.link/20240829053309.10563-1-zhangjiao2@cmss.chinamobile.comSigned-off-by: Jonathan Cameron &lt;Jonathan.Cameron@huawei.com&gt;

            List of files:
            /linux-6.15/tools/iio/Makefile</description>
        <pubDate>Thu, 29 Aug 2024 05:33:09 +0000</pubDate>
        <dc:creator>zhangjiao &lt;zhangjiao2@cmss.chinamobile.com&gt;</dc:creator>
    </item>
<item>
        <title>5c816641 - kbuild: replace $(if A,A,B) with $(or A,B)</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/iio/Makefile#5c816641</link>
        <description>kbuild: replace $(if A,A,B) with $(or A,B)$(or ...) is available since GNU Make 3.81, and useful to shorten thecode in some places.Covert as follows:  $(if A,A,B)  --&gt;  $(or A,B)This patch also converts:  $(if A, A, B) --&gt; $(or A, B)Strictly speaking, the latter is not an equivalent conversion becauseGNU Make keeps spaces after commas; if A is not empty, $(if A, A, B)expands to &quot; A&quot;, while $(or A, B) expands to &quot;A&quot;.Anyway, preceding spaces are not significant in the code hunks I touched.Signed-off-by: Masahiro Yamada &lt;masahiroy@kernel.org&gt;Reviewed-by: Nicolas Schier &lt;nicolas@fjasle.eu&gt;

            List of files:
            /linux-6.15/tools/iio/Makefile</description>
        <pubDate>Fri, 11 Feb 2022 05:14:11 +0000</pubDate>
        <dc:creator>Masahiro Yamada &lt;masahiroy@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>8827faab - tools: iio: convert iio_generic_buffer to use new IIO buffer API</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/iio/Makefile#8827faab</link>
        <description>tools: iio: convert iio_generic_buffer to use new IIO buffer APIThis change makes use of the new IIO buffer API to read data from an IIObuffer.It doesn&apos;t read the /sys/bus/iio/devices/iio:deviceX/scan_elements diranymore, it reads /sys/bus/iio/devices/iio:deviceX/bufferY, where all thescan_elements have been merged together with the old/classical bufferattributes.And it makes use of the new IIO_BUFFER_GET_FD_IOCTL ioctl to get an FD forthe IIO buffer for which to read data from.It also does a quick sanity check to see that -EBUSY is returned if readingthe chardev after the ioctl() has succeeded.This was tested with the following cases: 1. Tested buffer0 works with ioctl() 2. Tested that buffer0 can&apos;t be opened via /dev/iio:deviceX after ioctl()    This check should be omitted under normal operation; it&apos;s being done    here to check that the driver change is sane 3. Moved valid buffer0 to be buffer1, and tested that data comes from itSigned-off-by: Alexandru Ardelean &lt;alexandru.ardelean@analog.com&gt;Link: https://lore.kernel.org/r/20210215104043.91251-25-alexandru.ardelean@analog.comSigned-off-by: Jonathan Cameron &lt;Jonathan.Cameron@huawei.com&gt;

            List of files:
            /linux-6.15/tools/iio/Makefile</description>
        <pubDate>Mon, 15 Feb 2021 10:40:43 +0000</pubDate>
        <dc:creator>Alexandru Ardelean &lt;alexandru.ardelean@analog.com&gt;</dc:creator>
    </item>
<item>
        <title>731b60af - tools: iio: Correctly add make dependency for iio_utils</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/iio/Makefile#731b60af</link>
        <description>tools: iio: Correctly add make dependency for iio_utilsiio tools fail to build correctly with make parallelization:$ make -s -j24fixdep: error opening depfile: ./.iio_utils.o.d: No such file or directorymake[1]: *** [/home/labbott/linux_upstream/tools/build/Makefile.build:96: iio_utils.o] Error 2make: *** [Makefile:43: iio_event_monitor-in.o] Error 2make: *** Waiting for unfinished jobs....This is because iio_utils.o is used across multiple targets.Fix this by making iio_utils.o a proper dependency.Signed-off-by: Laura Abbott &lt;labbott@redhat.com&gt;Signed-off-by: Jonathan Cameron &lt;Jonathan.Cameron@huawei.com&gt;

            List of files:
            /linux-6.15/tools/iio/Makefile</description>
        <pubDate>Fri, 18 Oct 2019 17:29:08 +0000</pubDate>
        <dc:creator>Laura Abbott &lt;labbott@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>536cdb68 - tools iio: Override CFLAGS assignments</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/iio/Makefile#536cdb68</link>
        <description>tools iio: Override CFLAGS assignmentsSo user could specify outside CFLAGS values.Signed-off-by: Jiri Olsa &lt;jolsa@kernel.org&gt;Cc: Alexander Shishkin &lt;alexander.shishkin@linux.intel.com&gt;Cc: Andy Shevchenko &lt;andriy.shevchenko@linux.intel.com&gt;Cc: Hartmut Knaack &lt;knaack.h@gmx.de&gt;Cc: Jonathan Cameron &lt;jic23@kernel.org&gt;Cc: Lars-Peter Clausen &lt;lars@metafoo.de&gt;Cc: Namhyung Kim &lt;namhyung@kernel.org&gt;Cc: Peter Zijlstra &lt;peterz@infradead.org&gt;Link: http://lkml.kernel.org/r/20190103161350.11446-3-jolsa@kernel.orgSigned-off-by: Arnaldo Carvalho de Melo &lt;acme@redhat.com&gt;

            List of files:
            /linux-6.15/tools/iio/Makefile</description>
        <pubDate>Thu, 03 Jan 2019 16:13:50 +0000</pubDate>
        <dc:creator>Jiri Olsa &lt;jolsa@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>57297461 - tools iio: Override CFLAGS assignments</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/iio/Makefile#57297461</link>
        <description>tools iio: Override CFLAGS assignmentsSo user could specify outside CFLAGS values.Cc: Jonathan Cameron &lt;jic23@kernel.org&gt;Cc: Hartmut Knaack &lt;knaack.h@gmx.de&gt;Cc: Lars-Peter Clausen &lt;lars@metafoo.de&gt;Signed-off-by: Jiri Olsa &lt;jolsa@kernel.org&gt;Signed-off-by: Jonathan Cameron &lt;Jonathan.Cameron@huawei.com&gt;

            List of files:
            /linux-6.15/tools/iio/Makefile</description>
        <pubDate>Tue, 16 Oct 2018 15:06:14 +0000</pubDate>
        <dc:creator>Jiri Olsa &lt;jolsa@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>7ed1c190 - tools: fix cross-compile var clobbering</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/iio/Makefile#7ed1c190</link>
        <description>tools: fix cross-compile var clobberingCurrently a number of Makefiles break when used with toolchains thatpass extra flags in CC and other cross-compile related variables (suchas --sysroot).Thus we get this error when we use a toolchain that puts --sysroot inthe CC var:  ~/src/linux/tools$ make iio  [snip]  iio_event_monitor.c:18:10: fatal error: unistd.h: No such file or directory    #include &lt;unistd.h&gt;             ^~~~~~~~~~This occurs because we clobber several env vars related tocross-compiling with lines like this:  CC = $(CROSS_COMPILE)gccAlthough this will point to a valid cross-compiler, we lose any extraflags that might exist in the CC variable, which can break toolchainsthat rely on them (for example, those that use --sysroot).This easily shows up using a Yocto SDK:  $ . [snip]/sdk/environment-setup-cortexa8hf-neon-poky-linux-gnueabi  $ echo $CC  arm-poky-linux-gnueabi-gcc -march=armv7-a -mfpu=neon -mfloat-abi=hard  -mcpu=cortex-a8  --sysroot=[snip]/sdk/sysroots/cortexa8hf-neon-poky-linux-gnueabi  $ echo $CROSS_COMPILE  arm-poky-linux-gnueabi-  $ echo ${CROSS_COMPILE}gcc  krm-poky-linux-gnueabi-gccAlthough arm-poky-linux-gnueabi-gcc is a cross-compiler, we&apos;ve lost the--sysroot and other flags that enable us to find the right libraries tolink against, so we can&apos;t find unistd.h and other libraries and headers.Normally with the --sysroot flag we would find unistd.h in the sdkdirectory in the sysroot:  $ find [snip]/sdk/sysroots -path &apos;*/usr/include/unistd.h&apos;  [snip]/sdk/sysroots/cortexa8hf-neon-poky-linux-gnueabi/usr/include/unistd.hThe perf Makefile adds CC = $(CROSS_COMPILE)gcc if and only if CC is notalready set, and it compiles correctly with the above toolchain.So, generalize the logic that perf uses in the common Makefile andremove the manual CC = $(CROSS_COMPILE)gcc lines from each Makefile.Note that this patch does not fix cross-compile for all the tools (somehave other bugs), but it does fix it for all except usb and acpi, whichstill have other unrelated issues.I tested both with and without the patch on native and cross-build andthere appear to be no regressions.Link: http://lkml.kernel.org/r/20180107214028.23771-1-martin@martingkelly.comSigned-off-by: Martin Kelly &lt;martin@martingkelly.com&gt;Acked-by: Mark Brown &lt;broonie@kernel.org&gt;Cc: Tejun Heo &lt;tj@kernel.org&gt;Cc: Li Zefan &lt;lizefan@huawei.com&gt;Cc: Johannes Weiner &lt;hannes@cmpxchg.org&gt;Cc: Linus Walleij &lt;linus.walleij@linaro.org&gt;Cc: &quot;K. Y. Srinivasan&quot; &lt;kys@microsoft.com&gt;Cc: Haiyang Zhang &lt;haiyangz@microsoft.com&gt;Cc: Stephen Hemminger &lt;sthemmin@microsoft.com&gt;Cc: Jonathan Cameron &lt;jic23@kernel.org&gt;Cc: Pali Rohar &lt;pali.rohar@gmail.com&gt;Cc: Richard Purdie &lt;rpurdie@rpsys.net&gt;Cc: Jacek Anaszewski &lt;jacek.anaszewski@gmail.com&gt;Cc: Pavel Machek &lt;pavel@ucw.cz&gt;Cc: Peter Zijlstra &lt;peterz@infradead.org&gt;Cc: Ingo Molnar &lt;mingo@redhat.com&gt;Cc: Arnaldo Carvalho de Melo &lt;acme@kernel.org&gt;Cc: Robert Moore &lt;robert.moore@intel.com&gt;Cc: Lv Zheng &lt;lv.zheng@intel.com&gt;Cc: &quot;Rafael J. Wysocki&quot; &lt;rafael.j.wysocki@intel.com&gt;Cc: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;Cc: Valentina Manea &lt;valentina.manea.m@gmail.com&gt;Cc: Shuah Khan &lt;shuah@kernel.org&gt;Cc: Mario Limonciello &lt;mario.limonciello@dell.com&gt;Signed-off-by: Andrew Morton &lt;akpm@linux-foundation.org&gt;Signed-off-by: Linus Torvalds &lt;torvalds@linux-foundation.org&gt;

            List of files:
            /linux-6.15/tools/iio/Makefile</description>
        <pubDate>Wed, 21 Feb 2018 22:45:12 +0000</pubDate>
        <dc:creator>Martin Kelly &lt;martin@martingkelly.com&gt;</dc:creator>
    </item>
<item>
        <title>b2441318 - License cleanup: add SPDX GPL-2.0 license identifier to files with no license</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/iio/Makefile#b2441318</link>
        <description>License cleanup: add SPDX GPL-2.0 license identifier to files with no licenseMany source files in the tree are missing licensing information, whichmakes it harder for compliance tools to determine the correct license.By default all files without license information are under the defaultlicense of the kernel, which is GPL version 2.Update the files which contain no license information with the &apos;GPL-2.0&apos;SPDX license identifier.  The SPDX identifier is a legally bindingshorthand, which can be used instead of the full boiler plate text.This patch is based on work done by Thomas Gleixner and Kate Stewart andPhilippe Ombredanne.How this work was done:Patches were generated and checked against linux-4.14-rc6 for a subset ofthe use cases: - file had no licensing information it it. - file was a */uapi/* one with no licensing information in it, - file was a */uapi/* one with existing licensing information,Further patches will be generated in subsequent months to fix up caseswhere non-standard license headers were used, and references to licensehad to be inferred by heuristics based on keywords.The analysis to determine which SPDX License Identifier to be applied toa file was done in a spreadsheet of side by side results from of theoutput of two independent scanners (ScanCode &amp; Windriver) producing SPDXtag:value files created by Philippe Ombredanne.  Philippe prepared thebase worksheet, and did an initial spot review of a few 1000 files.The 4.13 kernel was the starting point of the analysis with 60,537 filesassessed.  Kate Stewart did a file by file comparison of the scannerresults in the spreadsheet to determine which SPDX license identifier(s)to be applied to the file. She confirmed any determination that was notimmediately clear with lawyers working with the Linux Foundation.Criteria used to select files for SPDX license identifier tagging was: - Files considered eligible had to be source code files. - Make and config files were included as candidates if they contained &gt;5   lines of source - File already had some variant of a license header in it (even if &lt;5   lines).All documentation files were explicitly excluded.The following heuristics were used to determine which SPDX licenseidentifiers to apply. - when both scanners couldn&apos;t find any license traces, file was   considered to have no license information in it, and the top level   COPYING file license applied.   For non */uapi/* files that summary was:   SPDX license identifier                            # files   ---------------------------------------------------|-------   GPL-2.0                                              11139   and resulted in the first patch in this series.   If that file was a */uapi/* path one, it was &quot;GPL-2.0 WITH   Linux-syscall-note&quot; otherwise it was &quot;GPL-2.0&quot;.  Results of that was:   SPDX license identifier                            # files   ---------------------------------------------------|-------   GPL-2.0 WITH Linux-syscall-note                        930   and resulted in the second patch in this series. - if a file had some form of licensing information in it, and was one   of the */uapi/* ones, it was denoted with the Linux-syscall-note if   any GPL family license was found in the file or had no licensing in   it (per prior point).  Results summary:   SPDX license identifier                            # files   ---------------------------------------------------|------   GPL-2.0 WITH Linux-syscall-note                       270   GPL-2.0+ WITH Linux-syscall-note                      169   ((GPL-2.0 WITH Linux-syscall-note) OR BSD-2-Clause)    21   ((GPL-2.0 WITH Linux-syscall-note) OR BSD-3-Clause)    17   LGPL-2.1+ WITH Linux-syscall-note                      15   GPL-1.0+ WITH Linux-syscall-note                       14   ((GPL-2.0+ WITH Linux-syscall-note) OR BSD-3-Clause)    5   LGPL-2.0+ WITH Linux-syscall-note                       4   LGPL-2.1 WITH Linux-syscall-note                        3   ((GPL-2.0 WITH Linux-syscall-note) OR MIT)              3   ((GPL-2.0 WITH Linux-syscall-note) AND MIT)             1   and that resulted in the third patch in this series. - when the two scanners agreed on the detected license(s), that became   the concluded license(s). - when there was disagreement between the two scanners (one detected a   license but the other didn&apos;t, or they both detected different   licenses) a manual inspection of the file occurred. - In most cases a manual inspection of the information in the file   resulted in a clear resolution of the license that should apply (and   which scanner probably needed to revisit its heuristics). - When it was not immediately clear, the license identifier was   confirmed with lawyers working with the Linux Foundation. - If there was any question as to the appropriate license identifier,   the file was flagged for further research and to be revisited later   in time.In total, over 70 hours of logged manual review was done on thespreadsheet to determine the SPDX license identifiers to apply to thesource files by Kate, Philippe, Thomas and, in some cases, confirmationby lawyers working with the Linux Foundation.Kate also obtained a third independent scan of the 4.13 code base fromFOSSology, and compared selected files where the other two scannersdisagreed against that SPDX file, to see if there was new insights.  TheWindriver scanner is based on an older version of FOSSology in part, sothey are related.Thomas did random spot checks in about 500 files from the spreadsheetsfor the uapi headers and agreed with SPDX license identifier in thefiles he inspected. For the non-uapi files Thomas did random spot checksin about 15000 files.In initial set of patches against 4.14-rc6, 3 files were found to havecopy/paste license identifier errors, and have been fixed to reflect thecorrect identifier.Additionally Philippe spent 10 hours this week doing a detailed manualinspection and review of the 12,461 patched files from the initial patchversion early this week with: - a full scancode scan run, collecting the matched texts, detected   license ids and scores - reviewing anything where there was a license detected (about 500+   files) to ensure that the applied SPDX license was correct - reviewing anything where there was no detection but the patch license   was not GPL-2.0 WITH Linux-syscall-note to ensure that the applied   SPDX license was correctThis produced a worksheet with 20 files needing minor correction.  Thisworksheet was then exported into 3 different .csv files for thedifferent types of files to be modified.These .csv files were then reviewed by Greg.  Thomas wrote a script toparse the csv files and add the proper SPDX tag to the file, in theformat that the file expected.  This script was further refined by Gregbased on the output to detect more types of files automatically and todistinguish between header and source .c files (which need differentcomment types.)  Finally Greg ran the script using the .csv files togenerate the patches.Reviewed-by: Kate Stewart &lt;kstewart@linuxfoundation.org&gt;Reviewed-by: Philippe Ombredanne &lt;pombredanne@nexb.com&gt;Reviewed-by: Thomas Gleixner &lt;tglx@linutronix.de&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/tools/iio/Makefile</description>
        <pubDate>Wed, 01 Nov 2017 14:07:57 +0000</pubDate>
        <dc:creator>Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;</dc:creator>
    </item>
<item>
        <title>25e3f85a - iio: tools: add install section</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/iio/Makefile#25e3f85a</link>
        <description>iio: tools: add install sectionAllow user to call install target.Signed-off-by: Andy Shevchenko &lt;andriy.shevchenko@linux.intel.com&gt;Signed-off-by: Jonathan Cameron &lt;Jonathan.Cameron@huawei.com&gt;

            List of files:
            /linux-6.15/tools/iio/Makefile</description>
        <pubDate>Sat, 29 Jul 2017 00:36:05 +0000</pubDate>
        <dc:creator>Andy Shevchenko &lt;andriy.shevchenko@linux.intel.com&gt;</dc:creator>
    </item>
<item>
        <title>18956cf2 - iio: tools: move to tools buildsystem</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/iio/Makefile#18956cf2</link>
        <description>iio: tools: move to tools buildsystemThere is a nice buildsystem dedicated for userspace tools in Linux kernel tree.Switch iio target to be built by it.Signed-off-by: Andy Shevchenko &lt;andriy.shevchenko@linux.intel.com&gt;Signed-off-by: Jonathan Cameron &lt;Jonathan.Cameron@huawei.com&gt;

            List of files:
            /linux-6.15/tools/iio/Makefile</description>
        <pubDate>Sat, 29 Jul 2017 00:36:04 +0000</pubDate>
        <dc:creator>Andy Shevchenko &lt;andriy.shevchenko@linux.intel.com&gt;</dc:creator>
    </item>
<item>
        <title>c3666219 - tools/iio: Use include/uapi with __EXPORTED_HEADERS__</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/iio/Makefile#c3666219</link>
        <description>tools/iio: Use include/uapi with __EXPORTED_HEADERS__Use the local uapi headers to keep in sync with &quot;recently&quot; added enumvalues like IIO_UVINDEX.Build tested using:$ make -C &lt;kernelsrcdir&gt; tools/iio$ make -C &lt;kernelsrcdir&gt;/tools iio$ make -C &lt;kernelsrcdir&gt;/tools/iioThis follows a strategy similar to that used by tools/hv, tools/net andtools/leds among others.Cc: Randy Dunlap &lt;rdunlap@infradead.org&gt;Cc: Jonathan Cameron &lt;jic23@kernel.org&gt;Signed-off-by: Sekhar Nori &lt;nsekhar@ti.com&gt;Signed-off-by: Jonathan Cameron &lt;jic23@kernel.org&gt;

            List of files:
            /linux-6.15/tools/iio/Makefile</description>
        <pubDate>Fri, 21 Apr 2017 12:31:25 +0000</pubDate>
        <dc:creator>Sekhar Nori &lt;nsekhar@ti.com&gt;</dc:creator>
    </item>
<item>
        <title>5d48d6b0 - tools: iio: Rename generic_buffer to iio_generic_buffer</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/iio/Makefile#5d48d6b0</link>
        <description>tools: iio: Rename generic_buffer to iio_generic_bufferThis makes it clear that generic_buffer is an IIO tooland also complies with filename conventions in tools/iio.Signed-off-by: Daniel Baluta &lt;daniel.baluta@intel.com&gt;Signed-off-by: Jonathan Cameron &lt;jic23@kernel.org&gt;

            List of files:
            /linux-6.15/tools/iio/Makefile</description>
        <pubDate>Tue, 24 May 2016 15:03:55 +0000</pubDate>
        <dc:creator>Daniel Baluta &lt;daniel.baluta@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>0c4b6500 - tools: iio: Add ability to install/uninstall</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/iio/Makefile#0c4b6500</link>
        <description>tools: iio: Add ability to install/uninstallAdd options to the Makefile for install/uninstall similar to other tools.Signed-off-by: Peter Robinson &lt;pbrobinson@gmail.com&gt;Signed-off-by: Jonathan Cameron &lt;jic23@kernel.org&gt;

            List of files:
            /linux-6.15/tools/iio/Makefile</description>
        <pubDate>Wed, 25 May 2016 13:31:13 +0000</pubDate>
        <dc:creator>Peter Robinson &lt;pbrobinson@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>54628687 - iio: make tools more cross-compilation friendly</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/iio/Makefile#54628687</link>
        <description>iio: make tools more cross-compilation friendlyWhen cross-compiling the IIO tools we need to opportunity tospecify a cross compiler prefix and some extra CFLAGS. Thispatch enables this in the same way as for other stuff intools.Signed-off-by: Linus Walleij &lt;linus.walleij@linaro.org&gt;Acked-by: Daniel Baluta &lt;daniel.baluta@intel.com&gt;Signed-off-by: Jonathan Cameron &lt;jic23@kernel.org&gt;

            List of files:
            /linux-6.15/tools/iio/Makefile</description>
        <pubDate>Tue, 05 May 2015 08:42:12 +0000</pubDate>
        <dc:creator>Linus Walleij &lt;linus.walleij@linaro.org&gt;</dc:creator>
    </item>
<item>
        <title>976d9ab1 - tools: iio: Define _GNU_SOURCE in Makefile</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/iio/Makefile#976d9ab1</link>
        <description>tools: iio: Define _GNU_SOURCE in MakefileDefinition of _GNU_SOURCE is needed to get rid of some warnings, suchas:warning: implicit declaration of function `asprintf&apos;.generic_buffer.c and iio_event_monitor.c define _GNU_SOURCE,but it is also needed in lsiio.c and iio_utils.c. For this reason,this patch adds the definition in Makefile and removes it from whereit already exists.Signed-off-by: Roberta Dobrescu &lt;roberta.dobrescu@gmail.com&gt;Signed-off-by: Jonathan Cameron &lt;jic23@kernel.org&gt;

            List of files:
            /linux-6.15/tools/iio/Makefile</description>
        <pubDate>Thu, 26 Feb 2015 08:49:26 +0000</pubDate>
        <dc:creator>Roberta Dobrescu &lt;roberta.dobrescu@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>817020cf - iio: Move iio userspace applications out of staging</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/iio/Makefile#817020cf</link>
        <description>iio: Move iio userspace applications out of stagingThis patch moves iio userspace applications out of staging, to tools/iio/and adds a Makefile in order to compile them easily. It also adds tools/iio/to MAINTAINERS file.Signed-off-by: Roberta Dobrescu &lt;roberta.dobrescu@gmail.com&gt;Signed-off-by: Jonathan Cameron &lt;jic23@kernel.org&gt;

            List of files:
            /linux-6.15/tools/iio/Makefile</description>
        <pubDate>Thu, 26 Feb 2015 08:49:25 +0000</pubDate>
        <dc:creator>Roberta Dobrescu &lt;roberta.dobrescu@gmail.com&gt;</dc:creator>
    </item>
</channel>
</rss>
