From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-4.1 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI, SIGNED_OFF_BY,SPF_PASS,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 90CF2C04E53 for ; Wed, 15 May 2019 20:54:16 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 4E49120818 for ; Wed, 15 May 2019 20:54:16 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (1024-bit key) header.d=ti.com header.i=@ti.com header.b="A8Ng9owo" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727785AbfEOUyP (ORCPT ); Wed, 15 May 2019 16:54:15 -0400 Received: from fllv0015.ext.ti.com ([198.47.19.141]:42910 "EHLO fllv0015.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726290AbfEOUyO (ORCPT ); Wed, 15 May 2019 16:54:14 -0400 Received: from fllv0035.itg.ti.com ([10.64.41.0]) by fllv0015.ext.ti.com (8.15.2/8.15.2) with ESMTP id x4FKs2rH056136; Wed, 15 May 2019 15:54:02 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ti.com; s=ti-com-17Q1; t=1557953642; bh=+wUqRqbw1z4xlc63HNeRQzojTjDL8233B/q0TJ3CDqU=; h=Subject:To:CC:References:From:Date:In-Reply-To; b=A8Ng9owoXW5xqTffS3aPfLW8Ey+bkIZHgNfVox3ygbbiBBABQCxRXh06OkZ8Zi0ww sBv2bwYChvfIauYs74HPHMLklrNqtFgmBl8QS/oPlBveBq0xPcZcVxdsK6W7QKxnt0 EE8xQOmslh2qdP1exvQZU8AvZ8H3fZCRVizCAHgQ= Received: from DFLE100.ent.ti.com (dfle100.ent.ti.com [10.64.6.21]) by fllv0035.itg.ti.com (8.15.2/8.15.2) with ESMTPS id x4FKs2lE060513 (version=TLSv1.2 cipher=AES256-GCM-SHA384 bits=256 verify=FAIL); Wed, 15 May 2019 15:54:02 -0500 Received: from DFLE108.ent.ti.com (10.64.6.29) by DFLE100.ent.ti.com (10.64.6.21) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.1713.5; Wed, 15 May 2019 15:54:01 -0500 Received: from fllv0040.itg.ti.com (10.64.41.20) by DFLE108.ent.ti.com (10.64.6.29) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.1713.5 via Frontend Transport; Wed, 15 May 2019 15:54:01 -0500 Received: from [10.250.90.63] (ileax41-snat.itg.ti.com [10.172.224.153]) by fllv0040.itg.ti.com (8.15.2/8.15.2) with ESMTP id x4FKs1ew020719; Wed, 15 May 2019 15:54:01 -0500 Subject: Re: [PATCH v12 1/5] can: m_can: Create a m_can platform framework To: , , CC: , , References: <20190509161109.10499-1-dmurphy@ti.com> From: Dan Murphy Message-ID: Date: Wed, 15 May 2019 15:54:12 -0500 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.6.1 MIME-Version: 1.0 In-Reply-To: <20190509161109.10499-1-dmurphy@ti.com> Content-Type: text/plain; charset="utf-8" Content-Language: en-US Content-Transfer-Encoding: 7bit X-EXCLAIMER-MD-CONFIG: e1e8a2fd-e40a-4ac6-ac9b-f7e9cc9ee180 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Marc On 5/9/19 11:11 AM, Dan Murphy wrote: > Create a m_can platform framework that peripheral > devices can register to and use common code and register sets. > The peripheral devices may provide read/write and configuration > support of the IP. > > Acked-by: Wolfgang Grandegger > Signed-off-by: Dan Murphy > --- > > v12 - Update the m_can_read/write functions to create a backtrace if the callback > pointer is NULL. - https://lore.kernel.org/patchwork/patch/1052302/ > Is this able to be merged now? Dan