From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mgamail.intel.com (mgamail.intel.com [198.175.65.10]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 4A5F91DA0E0 for ; Wed, 29 Jan 2025 15:28:26 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=198.175.65.10 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1738164508; cv=none; b=ImTeEhYPUvjra46VUumNwpYMnmOKuNI6lPkZaje3d/chIn5xp/kOwcHcfYi7yijPB0l+BQcxvsDi/7cUutMtg5kdXxiVsrMCqrrO4VMdCUWz1QOoXUxzyda1mz5WadCLdpJvhb3sutTvwWevr6s9lbbU88ctl3QADVeKhZE8qbw= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1738164508; c=relaxed/simple; bh=uXiVje50MjoBHMcuVMvlyCFz9VjDSKpVj/dEQXR5e34=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=fXfQXeau+yTIAxBxnSwJj8IqC9Mipy8EkedGXmGbGC9qIKl9/R+oF5UV3+asZuvgwvuGg8MiGaUi1KYEYnbAtetrsjCoQU/Mqc4RM5iAiYTGH2/xruig/iu5ZM89oO7sToPf6HBShpmJNPy0dsLzza2kyYdFYOWQ+fxTHQVBUF4= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.intel.com; spf=none smtp.mailfrom=linux.intel.com; dkim=pass (2048-bit key) header.d=intel.com header.i=@intel.com header.b=CmEpTeaI; arc=none smtp.client-ip=198.175.65.10 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.intel.com Authentication-Results: smtp.subspace.kernel.org; spf=none smtp.mailfrom=linux.intel.com Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=intel.com header.i=@intel.com header.b="CmEpTeaI" DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1738164508; x=1769700508; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=uXiVje50MjoBHMcuVMvlyCFz9VjDSKpVj/dEQXR5e34=; b=CmEpTeaIYJXxqsOWPdyA3OpAZ4zOHY2HJ1NirmYTvEPgRJZHKRGP9fDN YMgAnqxAR2GdaIBmtfHZYvLYYWQWFH3r5tqvcbcmezHCYUNOrCqK8dNeC EjWeDT5fANHIpy6xHDYiTm/5nuhTQ5JMbMd6siYl6v7AVA9CjeJLDRHRk igM3y7vN5LeteXvJVBWngWVZrvnozM/WzSH7NYMGGP0OtloB4nl6pEDGn 6NAqrWZRQd1W2I+r8VK9XllAEtZ2DUgjCgboPYUPzDbops3u+YctN+qye MT4pMg+YX42duB1xgQBPbuzYvPfUUR6j1BF2XfShfwcmYYSSObthjUTTm w==; X-CSE-ConnectionGUID: kKCvrC+NR5SLhERjHUz+2g== X-CSE-MsgGUID: sDtVpFo5RdS+L8mqbIPnhA== X-IronPort-AV: E=McAfee;i="6700,10204,11330"; a="56110409" X-IronPort-AV: E=Sophos;i="6.13,243,1732608000"; d="scan'208";a="56110409" Received: from orviesa004.jf.intel.com ([10.64.159.144]) by orvoesa102.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 29 Jan 2025 07:28:27 -0800 X-CSE-ConnectionGUID: mJVCn33vT1u8mZBeguNKyg== X-CSE-MsgGUID: XbmG1fDhT0GmGfOr8bw7Iw== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="6.13,243,1732608000"; d="scan'208";a="114083462" Received: from black.fi.intel.com ([10.237.72.28]) by orviesa004.jf.intel.com with ESMTP; 29 Jan 2025 07:28:25 -0800 Received: by black.fi.intel.com (Postfix, from userid 1003) id A5A852CC2; Wed, 29 Jan 2025 17:28:23 +0200 (EET) From: Andy Shevchenko To: Andy Shevchenko , Hans de Goede , linux-kernel@vger.kernel.org Cc: Andy Shevchenko , Lee Jones Subject: [PATCH v1 1/1] mfd: intel_soc_pmic_chtdc_ti: Drop unneeded assignment for cache_type Date: Wed, 29 Jan 2025 17:28:22 +0200 Message-ID: <20250129152823.1802273-1-andriy.shevchenko@linux.intel.com> X-Mailer: git-send-email 2.43.0.rc1.1336.g36b5255a03ac Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit REGCACHE_NONE is the default type of the cache when not provided. Drop unneeded explicit assignment to it. Note, it's defined to 0, and if ever be redefined, it will break literally a lot of the drivers, so it very unlikely to happen. Signed-off-by: Andy Shevchenko --- drivers/mfd/intel_soc_pmic_chtdc_ti.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/mfd/intel_soc_pmic_chtdc_ti.c b/drivers/mfd/intel_soc_pmic_chtdc_ti.c index 8582ae65a802..4c1a68c9f575 100644 --- a/drivers/mfd/intel_soc_pmic_chtdc_ti.c +++ b/drivers/mfd/intel_soc_pmic_chtdc_ti.c @@ -82,7 +82,6 @@ static const struct regmap_config chtdc_ti_regmap_config = { .reg_bits = 8, .val_bits = 8, .max_register = 0xff, - .cache_type = REGCACHE_NONE, }; static const struct regmap_irq chtdc_ti_irqs[] = { -- 2.43.0.rc1.1336.g36b5255a03ac