Received: by 2002:a05:6a11:4021:0:0:0:0 with SMTP id ky33csp1288076pxb; Thu, 16 Sep 2021 04:21:54 -0700 (PDT) X-Google-Smtp-Source: ABdhPJxXA3XxppnCiLEATf51bYxnZb0Ydrvp0ikyKug6bPABCuNXxC/WLjqkKKKfHx+wwNqGkUhC X-Received: by 2002:a17:906:12c6:: with SMTP id l6mr5394702ejb.373.1631791314395; Thu, 16 Sep 2021 04:21:54 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1631791314; cv=none; d=google.com; s=arc-20160816; b=n3VTsmo4jI5YE+BDdbifcS3irLhm7RGWric41OxYFkqYqQ9GZTrPurYUimkPd8f710 nKqvvSYV9kFgz/LB//nP3kMN0adzBHL5YsFt9dqMyJZiB/0VCjEG8WElvk4C41sT23Ak x7ruQ+Ek0VnVo9zbnVlddtNa/alUbJlYjjL8LMkM4U+xiGrbKqEPOMCxVfR9CEKacbsa YktrBQsdEoLcLa2A3gur4Y7zSg1+uqJm6SQapOdDJkKUoVSCCQTeLlqXX+DYzEQl+ZJl lP1IFuYBiadCDG9nM9dI330UrVqNvZNLNRl/Dc4o3MkITQYyKiE5oUFbVKrzDdUDSqzx FXYA== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:message-id:date:subject:cc:to:from; bh=9oYxgCIzr5FyDbeswBUWwLzWAReBsap5M+R+uuyrSfk=; b=l70qKATrGhLBoprBCNmy2UDqA2nv9y0+KeHTm70u10uZPMWqKFxeD+ViuEgmqMrFpr +/HBjCmvBq9jN9DCRswd6Tb+QZN0SOVIkKRGJG9bIn+6DhKfBorz7fUOfHG/dLr3qVhZ CB7nT8Zem8BtUNmPzojIOpyMPoMVKpyjSF8/jtMoCeLuN//Jm4C4sOrPuD1zp4uUXpNF 6CIXyTTSLV8FJkpVdo8zQ4Rug8AKuzs1CpOFgYDCNWB0khylJmCnUVyaT1YYVhiU8V9I NyuqSlWbxSCXJyXZ4/0JzYyC82OMGvgyn7cIZG9xPAnZ7E/SSIoOqQfKZYTGi8CGeEpE prhg== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id b25si3482138ejl.528.2021.09.16.04.21.30; Thu, 16 Sep 2021 04:21:54 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S237777AbhIPLVL (ORCPT + 99 others); Thu, 16 Sep 2021 07:21:11 -0400 Received: from mx.socionext.com ([202.248.49.38]:63446 "EHLO mx.socionext.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S236992AbhIPLVI (ORCPT ); Thu, 16 Sep 2021 07:21:08 -0400 Received: from unknown (HELO kinkan2-ex.css.socionext.com) ([172.31.9.52]) by mx.socionext.com with ESMTP; 16 Sep 2021 20:19:46 +0900 Received: from mail.mfilter.local (m-filter-1 [10.213.24.61]) by kinkan2-ex.css.socionext.com (Postfix) with ESMTP id BE15F2059034; Thu, 16 Sep 2021 20:19:46 +0900 (JST) Received: from 172.31.9.51 (172.31.9.51) by m-FILTER with ESMTP; Thu, 16 Sep 2021 20:19:46 +0900 Received: from plum.e01.socionext.com (unknown [10.212.243.119]) by kinkan2.css.socionext.com (Postfix) with ESMTP id 57BCEAB192; Thu, 16 Sep 2021 20:19:46 +0900 (JST) From: Kunihiko Hayashi To: Linus Walleij , Bartosz Golaszewski , Masami Hiramatsu Cc: linux-gpio@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, Kunihiko Hayashi Subject: [PATCH 0/3] gpio: uniphier: Misc fixes Date: Thu, 16 Sep 2021 20:19:34 +0900 Message-Id: <1631791177-27229-1-git-send-email-hayashi.kunihiko@socionext.com> X-Mailer: git-send-email 2.7.4 Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org This patch series includes fixes and changes for UniPhier GPIO driver. Patch 1 is to remove the return value of each function according to the return type of irq_chip callback functions. Patch 2 is to replace direct access to IRQ hardware number with helper functions. Patch 3 is to replace direct access to private data from IRQ data with helper functions. Kunihiko Hayashi (3): gpio: uniphier: Fix void functions to remove return value gpio: uniphier: Use helper function to get IRQ hardware number gpio: uniphier: Use helper functions to get private data from IRQ data drivers/gpio/gpio-uniphier.c | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) -- 2.7.4