From mboxrd@z Thu Jan 1 00:00:00 1970 Date: Wed, 25 Apr 2018 11:00:31 +0200 From: Greg Kroah-Hartman To: Johan Hovold Cc: Rob Herring , Mark Rutland , Andreas Kemnade , Arnd Bergmann , "H . Nikolaus Schaller" , Pavel Machek , linux-kernel@vger.kernel.org, devicetree@vger.kernel.org Subject: Re: [PATCH 3/7] gnss: add generic serial driver Message-ID: <20180425090031.GD13295@kroah.com> References: <20180424163458.11947-1-johan@kernel.org> <20180424163458.11947-4-johan@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20180424163458.11947-4-johan@kernel.org> User-Agent: Mutt/1.9.5 (2018-04-13) X-Mailing-List: linux-kernel@vger.kernel.org List-ID: On Tue, Apr 24, 2018 at 06:34:54PM +0200, Johan Hovold wrote: > +static inline void *gnss_serial_get_drvdata(struct gnss_serial *gserial) > +{ > + return &gserial[1]; > +} Oh that's the best hack I have seen in a long time. I need to remember that one for next time. Anyway, in reading this driver, I don't think the module reference counting is being handled here, so you might want to add that to the gnss core to keep things from going south if modules are unloaded. thanks, greg k-h