From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752167AbaHWEAc (ORCPT ); Sat, 23 Aug 2014 00:00:32 -0400 Received: from mail-pd0-f180.google.com ([209.85.192.180]:55763 "EHLO mail-pd0-f180.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751376AbaHWEAa (ORCPT ); Sat, 23 Aug 2014 00:00:30 -0400 From: Kevin Hilman To: Nishanth Menon Cc: Javier Martinez Canillas , Santosh Shilimkar , , , Subject: Re: [PATCH] gpio: omap: Fix interrupt names References: <1408627195-18421-1-git-send-email-nm@ti.com> Date: Fri, 22 Aug 2014 21:00:27 -0700 In-Reply-To: <1408627195-18421-1-git-send-email-nm@ti.com> (Nishanth Menon's message of "Thu, 21 Aug 2014 08:19:55 -0500") Message-ID: <7hvbpj6ejo.fsf@paris.lan> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Nishanth Menon writes: > When viewing the /proc/interrupts, there is no information about which > GPIO bank a specific gpio interrupt is hooked on to. This is more than a > bit irritating as such information can esily be provided back to the > user and at times, can be crucial for debug. > > So, instead of displaying something like: > 31: 0 0 GPIO 0 palmas > 32: 0 0 GPIO 27 mmc0 > > Display the following with appropriate device name: > 31: 0 0 4ae10000.gpio 0 palmas > 32: 0 0 4805d000.gpio 27 mmc0 > > This requires that we create irq_chip instance specific for each GPIO > bank which is trivial to achieve. > > Signed-off-by: Nishanth Menon Acked-by: Kevin Hilman