dt9812: Fix logical || vs bitwise |.
Fix bug discovered by Dan Carpenter in the "staging" sources.
In dt9212_configure_gain(), some bitmask constants were OR'ed together
logically (giving the value 1) when they should have been OR'ed together
bitwise. The effect of this bug is that the analog gain would be set
incorrectly on the AI subdevice for certain ranges.
As it happens, the driver is incomplete regarding range settings anyway,
so the bug fix currently has no effect.
Signed-off-by: Ian Abbott <abbotti@mev.co.uk>