From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753525Ab3LBLjc (ORCPT ); Mon, 2 Dec 2013 06:39:32 -0500 Received: from mail-la0-f42.google.com ([209.85.215.42]:58679 "EHLO mail-la0-f42.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753014Ab3LBLja (ORCPT ); Mon, 2 Dec 2013 06:39:30 -0500 Message-ID: <1385984366.12531.24.camel@host5.omatika.ru> Subject: Re: [PATCH 05/11] serial: support for 16550 serial ports on LP-8x4x From: Sergei Ianovich To: Russell King - ARM Linux Cc: linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org, Eric Miao , Haojian Zhuang , Greg Kroah-Hartman , Jiri Slaby , Heikki Krogerus , Arnd Bergmann , "open list:SERIAL DRIVERS" Date: Mon, 02 Dec 2013 15:39:26 +0400 In-Reply-To: <20131202113052.GG16735@n2100.arm.linux.org.uk> References: <1385879185-22455-1-git-send-email-ynvich@gmail.com> <1385879185-22455-6-git-send-email-ynvich@gmail.com> <20131202113052.GG16735@n2100.arm.linux.org.uk> Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.8.5-2+b1 Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, 2013-12-02 at 11:30 +0000, Russell King - ARM Linux wrote: > On Sun, Dec 01, 2013 at 10:26:18AM +0400, Sergei Ianovich wrote: > > +static struct platform_device lp8x4x_device = { > > + .name = "serial8250", > > + .id = PLAT8250_DEV_ACCENT, > > You should not re-use the enum value here. The enum is designed as a > method to provide the platform devices with a unique id, not as a means > to identify the manufacturer or anything else like that. Should I add a new enum? Or should I use zero? From mboxrd@z Thu Jan 1 00:00:00 1970 From: ynvich@gmail.com (Sergei Ianovich) Date: Mon, 02 Dec 2013 15:39:26 +0400 Subject: [PATCH 05/11] serial: support for 16550 serial ports on LP-8x4x In-Reply-To: <20131202113052.GG16735@n2100.arm.linux.org.uk> References: <1385879185-22455-1-git-send-email-ynvich@gmail.com> <1385879185-22455-6-git-send-email-ynvich@gmail.com> <20131202113052.GG16735@n2100.arm.linux.org.uk> Message-ID: <1385984366.12531.24.camel@host5.omatika.ru> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org On Mon, 2013-12-02 at 11:30 +0000, Russell King - ARM Linux wrote: > On Sun, Dec 01, 2013 at 10:26:18AM +0400, Sergei Ianovich wrote: > > +static struct platform_device lp8x4x_device = { > > + .name = "serial8250", > > + .id = PLAT8250_DEV_ACCENT, > > You should not re-use the enum value here. The enum is designed as a > method to provide the platform devices with a unique id, not as a means > to identify the manufacturer or anything else like that. Should I add a new enum? Or should I use zero?