Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751400AbaKYUD6 (ORCPT ); Tue, 25 Nov 2014 15:03:58 -0500 Received: from mail.linuxfoundation.org ([140.211.169.12]:49373 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750828AbaKYUDz (ORCPT ); Tue, 25 Nov 2014 15:03:55 -0500 Date: Tue, 25 Nov 2014 12:03:53 -0800 From: Greg KH To: Chunyan Zhang Cc: grant.likely@linaro.org, robh+dt@kernel.org, catalin.marinas@arm.com, ijc+devicetree@hellion.org.uk, jslaby@suse.cz, galak@codeaurora.org, broonie@linaro.org, mark.rutland@arm.com, m-karicheri2@ti.com, pawel.moll@arm.com, artagnon@gmail.com, rrichter@cavium.com, will.deacon@arm.com, arnd@arndb.de, gnomes@lxorguk.ukuu.org.uk, corbet@lwn.net, jason@lakedaemon.net, broonie@kernel.org, heiko@sntech.de, shawn.guo@freescale.com, florian.vaussard@epfl.ch, andrew@lunn.ch, hytszk@gmail.com, orsonzhai@gmail.com, geng.ren@spreadtrum.com, zhizhou.zhang@spreadtrum.com, lanqing.liu@spreadtrum.com, zhang.lyra@gmail.com, wei.qiao@spreadtrum.com, devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, sprdlinux@freelists.org, linux-doc@vger.kernel.org, linux-serial@vger.kernel.org, linux-api@vger.kernel.org Subject: Re: [PATCH v3 5/5] tty/serial: Add Spreadtrum sc9836-uart driver support Message-ID: <20141125200353.GA7653@kroah.com> References: <1416917818-10506-1-git-send-email-chunyan.zhang@spreadtrum.com> <1416917818-10506-6-git-send-email-chunyan.zhang@spreadtrum.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1416917818-10506-6-git-send-email-chunyan.zhang@spreadtrum.com> User-Agent: Mutt/1.5.23 (2014-03-12) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, Nov 25, 2014 at 08:16:58PM +0800, Chunyan Zhang wrote: > Add a full sc9836-uart driver for SC9836 SoC which is based on the > spreadtrum sharkl64 platform. > This driver also support earlycon. > > Signed-off-by: Chunyan Zhang > Signed-off-by: Orson Zhai > Originally-by: Lanqing Liu Some objections: > +static struct platform_driver sprd_platform_driver = { > + .probe = sprd_probe, > + .remove = sprd_remove, > + .suspend = sprd_suspend, > + .resume = sprd_resume, > + .driver = { > + .name = "sprd_serial", > + .owner = THIS_MODULE, platform drivers don't need .owner in them anymore, it's handled by the driver core automatically. > + .of_match_table = of_match_ptr(serial_ids), > + }, > +}; > + > +static int __init sprd_serial_init(void) > +{ > + int ret = 0; > + > + ret = uart_register_driver(&sprd_uart_driver); > + if (unlikely(ret != 0)) > + return ret; NEVER use unlikely unless you can measure the difference without it. And even then, you better be able to justify it. For something as dumb as this type of check, youare working against the complier and cpu which already knows that 0 is the usual response. So please remove all usages of likely/unlikely in this patch series. > + > + ret = platform_driver_register(&sprd_platform_driver); > + if (unlikely(ret != 0)) > + uart_unregister_driver(&sprd_uart_driver); > + > + return ret; > +} > + > +static void __exit sprd_serial_exit(void) > +{ > + platform_driver_unregister(&sprd_platform_driver); > + uart_unregister_driver(&sprd_uart_driver); > +} > + > +module_init(sprd_serial_init); > +module_exit(sprd_serial_exit); > + > +MODULE_LICENSE("GPL"); > +MODULE_DESCRIPTION("Spreadtrum SoC serial driver series"); > diff --git a/include/uapi/linux/serial_core.h b/include/uapi/linux/serial_core.h > index 16ad852..d9a8c88 100644 > --- a/include/uapi/linux/serial_core.h > +++ b/include/uapi/linux/serial_core.h > @@ -247,4 +247,7 @@ > /* MESON */ > #define PORT_MESON 109 > > +/* SPRD SERIAL */ > +#define PORT_SPRD 110 Please use a tab character here. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/