From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mgamail.intel.com (mgamail.intel.com [134.134.136.126]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 1CCE241235; Wed, 20 Dec 2023 15:44:59 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; dmarc=fail (p=none dis=none) header.from=gmail.com Authentication-Results: smtp.subspace.kernel.org; spf=fail smtp.mailfrom=gmail.com X-IronPort-AV: E=McAfee;i="6600,9927,10930"; a="380821613" X-IronPort-AV: E=Sophos;i="6.04,291,1695711600"; d="scan'208";a="380821613" Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by orsmga106.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 20 Dec 2023 07:44:59 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10930"; a="894739337" X-IronPort-AV: E=Sophos;i="6.04,291,1695711600"; d="scan'208";a="894739337" Received: from smile.fi.intel.com ([10.237.72.54]) by fmsmga002.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 20 Dec 2023 07:44:56 -0800 Received: from andy by smile.fi.intel.com with local (Exim 4.97) (envelope-from ) id 1rFykf-00000007aga-0x2a; Wed, 20 Dec 2023 17:44:53 +0200 Date: Wed, 20 Dec 2023 17:44:52 +0200 From: Andy Shevchenko To: Hugo Villeneuve Cc: gregkh@linuxfoundation.org, jirislaby@kernel.org, jringle@gridpoint.com, kubakici@wp.pl, phil@raspberrypi.org, bo.svangard@embeddedart.se, linux-kernel@vger.kernel.org, linux-serial@vger.kernel.org, Hugo Villeneuve Subject: Re: [PATCH 06/18] serial: sc16is7xx: use spi_get_device_match_data() Message-ID: References: <20231219171903.3530985-1-hugo@hugovil.com> <20231219171903.3530985-7-hugo@hugovil.com> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20231219171903.3530985-7-hugo@hugovil.com> Organization: Intel Finland Oy - BIC 0357606-4 - Westendinkatu 7, 02160 Espoo On Tue, Dec 19, 2023 at 12:18:50PM -0500, Hugo Villeneuve wrote: > From: Hugo Villeneuve > > Use preferred spi_get_device_match_data() instead of > device_get_match_data() and spi_get_device_id() to get the driver match > data. ... > + devtype = (struct sc16is7xx_devtype *)spi_get_device_match_data(spi); Nice one, but drop the casting. (Yes, make sure the assignee is const. It might require an additional change.) > + if (!devtype) { > + dev_err(&spi->dev, "Failed to match device\n"); > + return -ENODEV; return dev_err_probe(...); ? > } -- With Best Regards, Andy Shevchenko