From mboxrd@z Thu Jan 1 00:00:00 1970 From: Anderson Briglia Subject: Re: [patch 3/5] [RFC] Add MMC Password Protection (lock/unlock) support V7: mmc_lock_unlock.diff Date: Mon, 27 Nov 2006 09:45:58 -0400 Message-ID: <456AEC16.3010009@indt.org.br> References: <4564640B.1070004@indt.org.br> <45680308.4040809@drzeus.cx> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <45680308.4040809@drzeus.cx> Sender: linux-kernel-owner@vger.kernel.org To: ext Pierre Ossman Cc: "Linux-omap-open-source@linux.omap.com" , Russell King , Tony Lindgren , "Aguiar Carlos (EXT-INdT/Manaus)" , ext David Brownell , "Lizardo Anderson (EXT-INdT/Manaus)" , linux-kernel@vger.kernel.org List-Id: linux-omap@vger.kernel.org ext Pierre Ossman wrote: > Anderson Briglia wrote: >> @@ -244,5 +244,13 @@ struct _mmc_csd { >> #define SD_BUS_WIDTH_1 0 >> #define SD_BUS_WIDTH_4 2 >> >> +/* >> + * MMC_LOCK_UNLOCK modes >> + */ >> +#define MMC_LOCK_MODE_ERASE (1<<3) >> +#define MMC_LOCK_MODE_UNLOCK (0<<2) >> +#define MMC_LOCK_MODE_CLR_PWD (1<<1) >> +#define MMC_LOCK_MODE_SET_PWD (1<<0) >> + >> #endif /* MMC_MMC_PROTOCOL_H */ >> > > This definition makes them look like bits, which is not how they are used. How can I improve this? Defining using integers directly? > > Rgds >