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=-6.0 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_PATCH,MAILING_LIST_MULTI,SPF_PASS,USER_AGENT_GIT 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 B5209C43387 for ; Tue, 18 Dec 2018 22:32:09 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 8B6772184C for ; Tue, 18 Dec 2018 22:32:09 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727594AbeLRWcI (ORCPT ); Tue, 18 Dec 2018 17:32:08 -0500 Received: from mga03.intel.com ([134.134.136.65]:60668 "EHLO mga03.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727453AbeLRWbz (ORCPT ); Tue, 18 Dec 2018 17:31:55 -0500 X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga006.jf.intel.com ([10.7.209.51]) by orsmga103.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 18 Dec 2018 14:31:52 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.56,370,1539673200"; d="scan'208";a="101704188" Received: from bgix-dell-lap.sea.intel.com ([10.241.111.161]) by orsmga006.jf.intel.com with ESMTP; 18 Dec 2018 14:31:51 -0800 From: Brian Gix To: linux-bluetooth@vger.kernel.org Cc: johan.hedberg@gmail.com, inga.stotland@intel.com, marcel@holtmann.org, Brian Gix Subject: [PATCH BlueZ v4 18/30] mesh: restructure I/O for multiple nodes Date: Tue, 18 Dec 2018 14:31:27 -0800 Message-Id: <20181218223139.8041-19-brian.gix@intel.com> X-Mailer: git-send-email 2.14.5 In-Reply-To: <20181218223139.8041-1-brian.gix@intel.com> References: <20181218223139.8041-1-brian.gix@intel.com> Sender: linux-bluetooth-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-bluetooth@vger.kernel.org --- mesh/mesh-io.c | 3 ++- mesh/mesh-io.h | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/mesh/mesh-io.c b/mesh/mesh-io.c index 5cdfdc5ff..8cf6c486a 100644 --- a/mesh/mesh-io.c +++ b/mesh/mesh-io.c @@ -177,7 +177,8 @@ bool mesh_io_send(struct mesh_io *io, struct mesh_io_send_info *info, return false; } -bool mesh_io_send_cancel(struct mesh_io *io, uint8_t *pattern, uint8_t len) +bool mesh_io_send_cancel(struct mesh_io *io, const uint8_t *pattern, + uint8_t len) { io = l_queue_find(io_list, match_by_io, io); diff --git a/mesh/mesh-io.h b/mesh/mesh-io.h index 754f6129c..71d3cb980 100644 --- a/mesh/mesh-io.h +++ b/mesh/mesh-io.h @@ -96,4 +96,5 @@ bool mesh_set_filter(struct mesh_io *io, uint8_t filter_id, bool mesh_io_send(struct mesh_io *io, struct mesh_io_send_info *info, const uint8_t *data, uint16_t len); -bool mesh_io_send_cancel(struct mesh_io *io, uint8_t *pattern, uint8_t len); +bool mesh_io_send_cancel(struct mesh_io *io, const uint8_t *pattern, + uint8_t len); -- 2.14.5