Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752486AbdHBPbn (ORCPT ); Wed, 2 Aug 2017 11:31:43 -0400 Received: from merlin.infradead.org ([205.233.59.134]:49230 "EHLO merlin.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752362AbdHBPbl (ORCPT ); Wed, 2 Aug 2017 11:31:41 -0400 Subject: Re: [patch v1 2/2] drivers: jtag: Add Aspeed SoC 24xx and 25xx families JTAG master driver To: Oleksandr Shamray , gregkh@linuxfoundation.org, arnd@arndb.de Cc: linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org, devicetree@vger.kernel.org, openbmc@lists.ozlabs.org, joel@jms.id.au, jiri@resnulli.us, tklauser@distanz.ch, linux-serial@vger.kernel.org, mec@shout.net, vadimp@maellanox.com, system-sw-low-level@mellanox.com, Jiri Pirko References: <1501679918-20486-1-git-send-email-oleksandrs@mellanox.com> <1501679918-20486-3-git-send-email-oleksandrs@mellanox.com> From: Randy Dunlap Message-ID: Date: Wed, 2 Aug 2017 08:31:29 -0700 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.2.1 MIME-Version: 1.0 In-Reply-To: <1501679918-20486-3-git-send-email-oleksandrs@mellanox.com> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1145 Lines: 37 On 08/02/2017 06:18 AM, Oleksandr Shamray wrote: > > diff --git a/drivers/jtag/Kconfig b/drivers/jtag/Kconfig > index a8d0149..7bf709c 100644 > --- a/drivers/jtag/Kconfig > +++ b/drivers/jtag/Kconfig > @@ -16,3 +16,16 @@ menuconfig JTAG > To compile this driver as a module, choose M here: the module will > be called jtag. > > +menuconfig JTAG_ASPEED > + tristate "Aspeed SoC JTAG controller support" > + depends on JTAG > + ---help--- > + This provides a support for Aspeed JTAG device, equipped on > + Aspeed SoC 24xx and 25xx families. Drivers allows programming > + of hardware devices, connected to SoC through the JTAG interface. > + > + If you want this support, you should say Y here. > + > + To compile this driver as a module, choose M here: the module will > + be called aspeed_jtag. In the Makefile, it looks like it is called jtag-aspeed. > + > diff --git a/drivers/jtag/Makefile b/drivers/jtag/Makefile > index e811330..e9fa7fa 100644 > --- a/drivers/jtag/Makefile > +++ b/drivers/jtag/Makefile > @@ -1,2 +1,3 @@ > obj-$(CONFIG_JTAG) += jtag.o > +obj-$(CONFIG_JTAG_ASPEED) += jtag-aspeed.o -- ~Randy