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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 3838FC38142 for ; Tue, 31 Jan 2023 14:44:11 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230202AbjAaOoJ (ORCPT ); Tue, 31 Jan 2023 09:44:09 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:42216 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231236AbjAaOoF (ORCPT ); Tue, 31 Jan 2023 09:44:05 -0500 Received: from mail-pl1-x633.google.com (mail-pl1-x633.google.com [IPv6:2607:f8b0:4864:20::633]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 57E551D932 for ; Tue, 31 Jan 2023 06:44:04 -0800 (PST) Received: by mail-pl1-x633.google.com with SMTP id v23so15295238plo.1 for ; Tue, 31 Jan 2023 06:44:04 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=chromium.org; s=google; h=cc:to:subject:message-id:date:from:in-reply-to:references :mime-version:from:to:cc:subject:date:message-id:reply-to; bh=hpvzkk4KiAncwiWVfbjry37FVWQG/VY55zGloY5qlYc=; b=k44mBuxhrbOWvUKRU60kcSQDG+yzJFJZvjRbuTECNupanwlHqjg4kmCnRip9L0Hd9G euguGd1P2YtLV3i6ZJw9+pC6xdr2PnW/qJ05lxEaKPrqJV3sJbRqFAKb79+y7bTUX/xh KhMMNyRnfZNkv677L65PG4030wyKO9hdkZDOE= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=cc:to:subject:message-id:date:from:in-reply-to:references :mime-version:x-gm-message-state:from:to:cc:subject:date:message-id :reply-to; bh=hpvzkk4KiAncwiWVfbjry37FVWQG/VY55zGloY5qlYc=; b=y7nXEnlb5knf4mA5bPaO16IPSFlsO1i1FospAbbebFsuGPyhfz3Z2KVU4l9Io3lKeD lqOrIrT67pEKpa+t5f8SwEMa10JS8ex96Oce7GS4/BjWrZhbeOOCf0t/TZXz1ARkMbxp KsUWfuU4x0Xjy+DCAc1Y8yeo45GX/y5RdawerbNXJjvTSCebpPpnKl1OZMM6ct199fQ2 oFgCouNQcsgb9KooBuWAD8XUM5ABA5h3YfRqzRF6lT5ByzFtibaNLkGQyAIZBrciRD4G P0XorGfTczAo31qBSoSzHjh+e99iB6uA3E5c89fhLREcGiglToWUgDWUViruAlrFUyEQ V7ow== X-Gm-Message-State: AFqh2krsUqdQErVM+BPVt55DkMXTIlxFhayhFHsgb1BjnDiWbbaXzwkf IQ6ACHy9mO7El3Pjq77+A7Cm98cThViA6V9Jvwv2cw== X-Google-Smtp-Source: AMrXdXu2koNIdQLcIVOpyAShjiIbJQ2nj2DAQAqUeajLFYgXdYc3NF39BwfEtlvtkWqcheZF4mJAtHhpoeKZY0k443U= X-Received: by 2002:a17:90a:2882:b0:22b:b832:4125 with SMTP id f2-20020a17090a288200b0022bb8324125mr6477120pjd.146.1675176243849; Tue, 31 Jan 2023 06:44:03 -0800 (PST) MIME-Version: 1.0 References: In-Reply-To: From: Allen Ballway Date: Tue, 31 Jan 2023 09:43:52 -0500 Message-ID: Subject: Re: Dependency on non-existing config I2C_DMI_CORE in commit a2f416bf062a ("HID: multitouch: Add quirks for flipped axes") To: Lukas Bulwahn Cc: linux-input@vger.kernel.org, Jiri Kosina , Jiri Kosina , Benjamin Tissoires , Henrik Rydberg , Linux Kernel Mailing List Content-Type: text/plain; charset="UTF-8" Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi Lukas, Thanks for catching this, that's definitely a mistake in my code. That was supposed to be CONFIG_I2C_HID_CORE. Should I send a follow-up patch for this, or another revision for the patch? It looks like it hasn't been pulled into the mainline branch yet and I'm not familiar with updating it while in a maintainer branch. Thanks, Allen On Mon, Jan 30, 2023 at 3:44 AM Lukas Bulwahn wrote: > > Dear Allen, > > with commit a2f416bf062a ("HID: multitouch: Add quirks for flipped > axes"), you add code that is dependent on the CONFIG_I2C_DMI_CORE. > However, this config symbol has not been defined anywhere in the > kernel repository. Is this a mistake in your code and you intended to > refer to another config symbol? Is there another patch to come that > adds this config symbol? Or is this a config symbol that only exists > in some out-of-tree repository? > > Something might be odd here, because this code is effectively dead now > with being dependent on a non-existing config symbol. > > Best regards, > > Lukas