Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=019a5f56ec195aceadada18aaaad0f67294bdaef
Commit:     019a5f56ec195aceadada18aaaad0f67294bdaef
Parent:     c783837bc69dd0f329a441c1704f5a02d01d1bd5
Author:     Nicolas Pitre <[EMAIL PROTECTED]>
AuthorDate: Thu Oct 11 01:06:03 2007 -0400
Committer:  Pierre Ossman <[EMAIL PROTECTED]>
CommitDate: Thu Oct 11 19:09:08 2007 +0200

    mmc: don't use weight32()
    
    Using weight32() to determine if a value is a power of 2 is a rather
    heavi weight solution.  The classic idiom is (x & (x - 1)) == 0, but
    the kernel already provide a is_power_of_2 function for it.
    
    Signed-off-by: Nicolas Pitre <[EMAIL PROTECTED]>
    Signed-off-by: Pierre Ossman <[EMAIL PROTECTED]>
---
 drivers/mmc/host/mmci.c    |    3 ++-
 drivers/mmc/host/tifm_sd.c |    3 ++-
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/drivers/mmc/host/mmci.c b/drivers/mmc/host/mmci.c
index 4a72772..d0eb0a2 100644
--- a/drivers/mmc/host/mmci.c
+++ b/drivers/mmc/host/mmci.c
@@ -16,6 +16,7 @@
 #include <linux/delay.h>
 #include <linux/err.h>
 #include <linux/highmem.h>
+#include <linux/log2.h>
 #include <linux/mmc/host.h>
 #include <linux/amba/bus.h>
 #include <linux/clk.h>
@@ -391,7 +392,7 @@ static void mmci_request(struct mmc_host *mmc, struct 
mmc_request *mrq)
 
        WARN_ON(host->mrq != NULL);
 
-       if (mrq->data && (hweight32(mrq->data->blksz) > 1)) {
+       if (mrq->data && !is_power_of_2(mrq->data->blksz)) {
                printk(KERN_ERR "%s: Unsupported block size (%d bytes)\n",
                        mmc_hostname(mmc), mrq->data->blksz);
                mrq->cmd->error = -EINVAL;
diff --git a/drivers/mmc/host/tifm_sd.c b/drivers/mmc/host/tifm_sd.c
index 951392d..9b90479 100644
--- a/drivers/mmc/host/tifm_sd.c
+++ b/drivers/mmc/host/tifm_sd.c
@@ -16,6 +16,7 @@
 #include <linux/mmc/host.h>
 #include <linux/highmem.h>
 #include <linux/scatterlist.h>
+#include <linux/log2.h>
 #include <asm/io.h>
 
 #define DRIVER_NAME "tifm_sd"
@@ -637,7 +638,7 @@ static void tifm_sd_request(struct mmc_host *mmc, struct 
mmc_request *mrq)
                goto err_out;
        }
 
-       if (mrq->data && (hweight32(mrq->data->blksz) > 1)) {
+       if (mrq->data && !is_power_of_2(mrq->data->blksz)) {
                printk(KERN_ERR "%s: Unsupported block size (%d bytes)\n",
                        sock->dev.bus_id, mrq->data->blksz);
                mrq->cmd->error = -EINVAL;
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to