Return-Path: Message-ID: <50800C6B.30000@monom.org> Date: Thu, 18 Oct 2012 16:04:27 +0200 From: Daniel Wagner MIME-Version: 1.0 To: =?UTF-8?B?RnLDqWTDqXJpYyBEYW5pcw==?= CC: linux-bluetooth@vger.kernel.org Subject: Re: [PATCH v5 02/15] adapter: Read name in storage at init References: <1350550858-12239-1-git-send-email-frederic.danis@linux.intel.com> <1350550858-12239-3-git-send-email-frederic.danis@linux.intel.com> In-Reply-To: <1350550858-12239-3-git-send-email-frederic.danis@linux.intel.com> Content-Type: text/plain; charset=UTF-8; format=flowed Sender: linux-bluetooth-owner@vger.kernel.org List-ID: On 18.10.2012 11:00, Frédéric Danis wrote: > --- > src/adapter.c | 13 +++++++++++++ > 1 file changed, 13 insertions(+) > > diff --git a/src/adapter.c b/src/adapter.c > index 3b24816..233527a 100644 > --- a/src/adapter.c > +++ b/src/adapter.c > @@ -2506,6 +2506,18 @@ void btd_adapter_unref(struct btd_adapter *adapter) > g_free(path); > } > > +static void load_config(struct btd_adapter *adapter) > +{ > + char name[MAX_NAME_LENGTH + 1]; > + > + /* Get name */ > + if (read_local_name(&adapter->bdaddr, name) < 0) > + adapter->name = NULL; > + else > + adapter->name = g_strdup(name); > + > +} Why is this function called load_config when then comment above says 'Get name'? Or is there more code added in the next patches?