From patchwork Mon Jun 22 17:18:17 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tedd Ho-Jeong An X-Patchwork-Id: 11618499 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 1D952138C for ; Mon, 22 Jun 2020 17:18:27 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 0F1EB20732 for ; Mon, 22 Jun 2020 17:18:27 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1729873AbgFVRS0 (ORCPT ); Mon, 22 Jun 2020 13:18:26 -0400 Received: from mga11.intel.com ([192.55.52.93]:52716 "EHLO mga11.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1729309AbgFVRS0 (ORCPT ); Mon, 22 Jun 2020 13:18:26 -0400 IronPort-SDR: NSii6+4+//pRnpvp68w+GllNXLQOC2pKclP6lxtAqRMSD82bxvhkrBaBV0zmWDyp9Wg8mnrfU9 G52eGXb75qGA== X-IronPort-AV: E=McAfee;i="6000,8403,9660"; a="142072552" X-IronPort-AV: E=Sophos;i="5.75,268,1589266800"; d="scan'208";a="142072552" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga008.jf.intel.com ([10.7.209.65]) by fmsmga102.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 22 Jun 2020 10:18:25 -0700 IronPort-SDR: GxJiDVgqxMp0I1Xq3vw7pKuGo+xhubDTDEnVf6lJqKr/u2XrFV4Dq1prFyIPV42V3hvj38R76S Kzf9lU+UBhFg== X-IronPort-AV: E=Sophos;i="5.75,268,1589266800"; d="scan'208";a="310177608" Received: from han1-mobl3.jf.intel.com ([10.255.228.143]) by orsmga008-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 22 Jun 2020 10:18:25 -0700 From: tedd.an@linux.intel.com To: linux-bluetooth@vger.kernel.org Cc: Tedd Ho-Jeong An Subject: [PATCH V2] checkpatch: Add configuration for checkpatch Date: Mon, 22 Jun 2020 10:18:17 -0700 Message-Id: <20200622171817.144830-1-tedd.an@linux.intel.com> X-Mailer: git-send-email 2.25.4 MIME-Version: 1.0 Sender: linux-bluetooth-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-bluetooth@vger.kernel.org From: Tedd Ho-Jeong An This patch adds a configuration with basic rules for checkpatch. --- .checkpatch.conf | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .checkpatch.conf diff --git a/.checkpatch.conf b/.checkpatch.conf new file mode 100644 index 000000000..419733832 --- /dev/null +++ b/.checkpatch.conf @@ -0,0 +1,14 @@ +--no-tree +--no-signoff +--summary-file +--show-types +--max-line-length=80 + +--ignore COMPLEX_MACRO +--ignore SPLIT_STRING +--ignore CONST_STRUCT +--ignore FILE_PATH_CHANGES +--ignore MISSING_SIGN_OFF +--ignore PREFER_PACKED +--ignore COMMIT_MESSAGE +--ignore SSCANF_TO_KSTRTO