summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTzafrir Cohen <tzafrir.cohen@xorcom.com>2011-07-20 16:49:31 +0000
committerTzafrir Cohen <tzafrir.cohen@xorcom.com>2011-07-20 16:49:31 +0000
commit227c7017454bbb6d9eeefa9ed1463f1f0dad89cd (patch)
tree6e68d4275ea69bf4361fec0ca7ab9767c8e69754
parent7e149c518ec53e0cc4b9298212045a4da32b6781 (diff)
xpp: make quirk bit flags unsigned
This avoids a nag about a meaningless single-bit signed int. Signed-off-by: Tzafrir Cohen <tzafrir.cohen@xorcom.com> git-svn-id: http://svn.asterisk.org/svn/dahdi/linux/trunk@10054 a0bf4364-ded3-4de4-8d8a-66a801d63aff
-rw-r--r--drivers/dahdi/xpp/xbus-core.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/dahdi/xpp/xbus-core.h b/drivers/dahdi/xpp/xbus-core.h
index 14678ff..2149a38 100644
--- a/drivers/dahdi/xpp/xbus-core.h
+++ b/drivers/dahdi/xpp/xbus-core.h
@@ -208,8 +208,8 @@ struct xbus {
int cpu_rcv_tasklet[NR_CPUS];
struct quirks {
- int has_fxo:1;
- int has_digital_span:1;
+ unsigned int has_fxo:1;
+ unsigned int has_digital_span:1;
} quirks;
bool self_ticking;
enum sync_mode sync_mode;