From 06da83bc3a969c18ee99aa1b3ea511bf4c3763ff Mon Sep 17 00:00:00 2001 From: Tobias Klauser Date: Fri, 15 Jun 2007 21:58:49 +0200 Subject: inotail.c: s/Inotify/inotify/ --- inotail.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/inotail.c b/inotail.c index 967a0fa..aecbc1a 100644 --- a/inotail.c +++ b/inotail.c @@ -355,10 +355,10 @@ static int watch_files(struct file_struct *files, int n_files) ifd = inotify_init(); if (errno == ENOSYS) { - fprintf(stderr, "Error: Inotify is not supported by the kernel you're currently running.\n"); + fprintf(stderr, "Error: inotify is not supported by the kernel you're currently running.\n"); exit(EXIT_FAILURE); } else if (unlikely(ifd < 0)) { - fprintf(stderr, "Error: Could not initialize Inotify (%s)\n", strerror(errno)); + fprintf(stderr, "Error: Could not initialize inotify (%s)\n", strerror(errno)); exit(EXIT_FAILURE); } -- cgit v1.2.3-54-g00ecf type='hidden' name='id' value='362922a1a5345d17a9d4ad7e3f848aa4fdf79d75'/> net-next plumbingsTobias Klauser
summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorGeert Uytterhoeven <geert+renesas@glider.be>2015-09-01 16:30:12 +0200
committerGeert Uytterhoeven <geert+renesas@glider.be>2016-11-02 20:42:49 +0100
commit362922a1a5345d17a9d4ad7e3f848aa4fdf79d75 (patch)
tree54c7908def76a19ff9ab7acb7cc0f6a1cdedeb81 /tools
parent1001354ca34179f3db924eb66672442a173147dc (diff)
reset: Add renesas,rst DT bindings
Add DT bindings for the Renesas R-Car Reset Controller (R-Car Gen1 RESET/WDT and R-Car Gen2/Gen3 and RZ/G RST). As the features provided by the hardware module differ a lot across the various SoC families and members, only SoC-specific compatible values are defined. For now we use the RST only for providing access to the state of the mode pins, which is needed by the clock driver. Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be> Acked-by: Magnus Damm <damm+renesas@opensource.se> Acked-by: Dirk Behme <dirk.behme@de.bosch.com> Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Acked-by: Philipp Zabel <p.zabel@pengutronix.de> Acked-by: Rob Herring <robh@kernel.org>
Diffstat (limited to 'tools')