Skip to content

Commit

Permalink
mfd: si476x: Don't use 0bNNN
Browse files Browse the repository at this point in the history
This doesn't compile with sparc64 gcc-3.4.5.

Cc: Hans Verkuil <[email protected]>
Cc: Sam Ravnborg <[email protected]>
Cc: Andrey Smirnov <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Samuel Ortiz <[email protected]>
  • Loading branch information
akpm00 authored and Samuel Ortiz committed Apr 26, 2013
1 parent 367764a commit 99f4c6b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions include/linux/mfd/si476x-core.h
Original file line number Diff line number Diff line change
Expand Up @@ -515,11 +515,11 @@ enum si476x_fm_receiver_properties {
};

enum si476x_prop_audio_pwr_line_filter_bits {
SI476X_PROP_PWR_HARMONICS_MASK = 0b0000000000011111,
SI476X_PROP_PWR_GRID_MASK = 0b0000000100000000,
SI476X_PROP_PWR_ENABLE_MASK = 0b0000001000000000,
SI476X_PROP_PWR_GRID_50HZ = 0b0000000000000000,
SI476X_PROP_PWR_GRID_60HZ = 0b0000000100000000,
SI476X_PROP_PWR_HARMONICS_MASK = 0x001f,
SI476X_PROP_PWR_GRID_MASK = 0x0100,
SI476X_PROP_PWR_ENABLE_MASK = 0x0200,
SI476X_PROP_PWR_GRID_50HZ = 0x0000,
SI476X_PROP_PWR_GRID_60HZ = 0x0100,
};

enum si476x_prop_fm_rds_config_bits {
Expand Down

0 comments on commit 99f4c6b

Please sign in to comment.