aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Morton <akpm@linux-foundation.org>2013-04-26 11:23:26 -0400
committerSamuel Ortiz <sameo@linux.intel.com>2013-04-26 11:23:30 -0400
commit99f4c6b66a9ae362d21e6df95d04bc74e04d285e (patch)
tree3e5710ffc786597c30ea8dab91a935dedeebc08f
parent367764a4d1c8dfbf3e24bb0ffbc5eb8c5d5bf6eb (diff)
mfd: si476x: Don't use 0bNNN
This doesn't compile with sparc64 gcc-3.4.5. Cc: Hans Verkuil <hans.verkuil@cisco.com> Cc: Sam Ravnborg <sam@ravnborg.org> Cc: Andrey Smirnov <andrew.smirnov@gmail.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
-rw-r--r--include/linux/mfd/si476x-core.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/linux/mfd/si476x-core.h b/include/linux/mfd/si476x-core.h
index ede3022c03c4..ba89b94e4a56 100644
--- a/include/linux/mfd/si476x-core.h
+++ b/include/linux/mfd/si476x-core.h
@@ -515,11 +515,11 @@ enum si476x_fm_receiver_properties {
515}; 515};
516 516
517enum si476x_prop_audio_pwr_line_filter_bits { 517enum si476x_prop_audio_pwr_line_filter_bits {
518 SI476X_PROP_PWR_HARMONICS_MASK = 0b0000000000011111, 518 SI476X_PROP_PWR_HARMONICS_MASK = 0x001f,
519 SI476X_PROP_PWR_GRID_MASK = 0b0000000100000000, 519 SI476X_PROP_PWR_GRID_MASK = 0x0100,
520 SI476X_PROP_PWR_ENABLE_MASK = 0b0000001000000000, 520 SI476X_PROP_PWR_ENABLE_MASK = 0x0200,
521 SI476X_PROP_PWR_GRID_50HZ = 0b0000000000000000, 521 SI476X_PROP_PWR_GRID_50HZ = 0x0000,
522 SI476X_PROP_PWR_GRID_60HZ = 0b0000000100000000, 522 SI476X_PROP_PWR_GRID_60HZ = 0x0100,
523}; 523};
524 524
525enum si476x_prop_fm_rds_config_bits { 525enum si476x_prop_fm_rds_config_bits {