From mboxrd@z Thu Jan 1 00:00:00 1970 From: grant.likely@secretlab.ca (Grant Likely) Date: Sat, 09 Feb 2013 09:17:29 +0000 Subject: [PATCH 6/9] gpiolib: use descriptors internally In-Reply-To: References: <1359822572-26009-1-git-send-email-acourbot@nvidia.com> <1359822572-26009-8-git-send-email-acourbot@nvidia.com> Message-ID: <20130209091729.978C73E1A18@localhost> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org On Thu, 7 Feb 2013 15:57:32 +0900, Alexandre Courbot wrote: > On Wed, Feb 6, 2013 at 2:53 AM, Linus Walleij wrote: > > On Sat, Feb 2, 2013 at 5:29 PM, Alexandre Courbot wrote: > >> +/** > >> + * Convert a GPIO number to its descriptor > >> + */ > >> +static struct gpio_desc *gpio_to_desc(unsigned gpio) > >> +{ > >> + if (WARN(!gpio_is_valid(gpio), "invalid GPIO %d\n", gpio)) > >> + return NULL; > > > > Don't we want to return ERR_PTR(-EINVAL); here? > > > > Then you can use IS_ERR() on the pointers later. > > > > This is the approach taken by the external API for clk > > and pins. > > Yes, that completely makes sense. > No, it does not. The ERR_PTR()/IS_ERR() is a horrible pattern for code readability because it breaks the expectations that programmers have for what is and is not a bad pointer. There are decades of history where the test for a bad pointer is 'if (!ptr)'. Not only does ERR_PTR make make that test not work, but the compiler won't tell you when you get it wrong. There are places where ERR_PTR makes sense. Particularly when communicating with userspace where error codes have very specific meanings, but I don't want it in the GPIO subsystem. g.