[<prev] [next>] [day] [month] [year] [list]
Message-ID: <9e4733910808312117i76f07e80n6979e7bbfc1b7c21@mail.gmail.com>
Date: Mon, 1 Sep 2008 00:17:22 -0400
From: "Jon Smirl" <jonsmirl@...il.com>
To: lkml <linux-kernel@...r.kernel.org>,
"David Brownell" <david-b@...bell.net>
Subject: gpiolib, irqs and error returns
>From Documentation/gpio.txt
/* map GPIO numbers to IRQ numbers */
int gpio_to_irq(unsigned gpio);
/* map IRQ numbers to GPIO numbers */
int irq_to_gpio(unsigned irq);
Those return either the corresponding number in the other namespace, or
else a negative errno code if the mapping can't be done. (For example,
some GPIOs can't be used as IRQs.) It is an unchecked error to use a GPIO
number that wasn't set up as an input using gpio_direction_input(), or
to use an IRQ number that didn't originally come from gpio_to_irq().
------------------------------------------------------------
Isn't an irq now an unsigned int? And the only possible error return
is NO_IRQ (ie 0).
--
Jon Smirl
jonsmirl@...il.com
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists