[PATCH 04/10] pwm: core: use bitops

From: Olliver Schinagl
Date: Mon Oct 26 2015 - 17:33:27 EST


From: Olliver Schinagl <oliver@xxxxxxxxxxx>

The pwm header defines bits manually while there is a nice bitops.h with
a BIT() macro. Use the BIT() macro to set bits in pwm.h

Signed-off-by: Olliver Schinagl <oliver@xxxxxxxxxxx>
---
include/linux/pwm.h | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/include/linux/pwm.h b/include/linux/pwm.h
index d681f68..29315ad 100644
--- a/include/linux/pwm.h
+++ b/include/linux/pwm.h
@@ -1,6 +1,7 @@
#ifndef __LINUX_PWM_H
#define __LINUX_PWM_H

+#include <linux/bitops.h>
#include <linux/err.h>
#include <linux/of.h>

@@ -74,9 +75,9 @@ enum pwm_polarity {
};

enum {
- PWMF_REQUESTED = 1 << 0,
- PWMF_ENABLED = 1 << 1,
- PWMF_EXPORTED = 1 << 2,
+ PWMF_REQUESTED = BIT(0),
+ PWMF_ENABLED = BIT(1),
+ PWMF_EXPORTED = BIT(2),
};

/**
--
2.6.1

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/