From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (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 AEFF78F7D; Thu, 4 Apr 2024 10:05:48 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1712225148; cv=none; b=C/IWY81nn1TQHarU+i/JVK8OO4nJVjt54JTTG6GcJ8NgonizG2ClIL8Rp9CUp0fVmuLwZWDMqklxWoPq28/nqNeWpsgQLvnBLxsQ35Ufaa+wiiv6IfzxmsBSH8LTQ1egMtMHB1PZedPiUObiGx7fXhxbBtQ6MI4kSPbwB7o0gYM= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1712225148; c=relaxed/simple; bh=SMwANtbw6TFtzOiI5CiblchYkN5X389DW6eKfwxQnJ0=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=MWFCLrifvZgu2QRHsiWPnTWJw8Yn+P9rYYGLYH3kORGtRxeJH1lEzt3FijaDo2UjR9r3GlGjx/dSw2feIGxDYqhFCM/qSDb0oRplnUbfEN2OuDXIgFBwFvb86E3/OV3LlV5W6rnzQ1OsI/td7afIhX7aZoi1LI0a7qgV7lCOj2c= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=rtdcZlin; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="rtdcZlin" Received: by smtp.kernel.org (Postfix) with ESMTPSA id B8BD4C433C7; Thu, 4 Apr 2024 10:05:46 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1712225148; bh=SMwANtbw6TFtzOiI5CiblchYkN5X389DW6eKfwxQnJ0=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=rtdcZling1hQuYen2XhnKeoF694hLs82lIdwA2ENczGAp3LdK8gd9t47ogsQDIOnx ApM6/Ntd3ldW+Vyh5d9GQ6ikgZoVY31nJ8hZ7F8mba+Xc7X2DGqE14wtPiyGv5aHCv RURw76iXbMCu7G5ali4J3CirPgsRaMNy7G5JNm6JwtZ7p5gtIWEepi7rSGsK7wNiCV pp3DTmlqoXh3Bo40mocAkvEqBv/9FIsqUugRrTNrjYq/Sxw75T0XAIev+EAk3ZS7mP cgmrxN7gXxGbVpVC/+hRlauSnY2I/vTtCLk09xwQ8Qfew4J+teIY77lrEsMHvVQaUJ n5GUujhjCniLA== Date: Thu, 4 Apr 2024 12:05:43 +0200 From: Niklas Cassel To: Niklas Schnelle Cc: Damien Le Moal , linux-ide@vger.kernel.org, Arnd Bergmann , Heiko Carstens , linux-kernel@vger.kernel.org Subject: Re: [PATCH 1/1] ata: add HAS_IOPORT dependencies Message-ID: References: <20240404092936.3127972-1-schnelle@linux.ibm.com> <20240404092936.3127972-2-schnelle@linux.ibm.com> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20240404092936.3127972-2-schnelle@linux.ibm.com> On Thu, Apr 04, 2024 at 11:29:36AM +0200, Niklas Schnelle wrote: > In a future patch HAS_IOPORT=n will disable inb()/outb() and friends at > compile time. We thus need to add HAS_IOPORT as dependency for those > drivers using them. > > Co-developed-by: Arnd Bergmann > Signed-off-by: Arnd Bergmann > Acked-by: Damien Le Moal > Signed-off-by: Niklas Schnelle > --- Reviewed-by: Niklas Cassel