Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 270703
b: refs/heads/master
c: c29429f
h: refs/heads/master
i:
  270701: 7264efe
  270699: 3bfe637
  270695: fb1c53b
  270687: d3732e8
v: v3
  • Loading branch information
Axel Lin authored and Mark Brown committed Sep 29, 2011
1 parent 2dc300a commit 271ea35
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: a8fdac83a3703c7f35d4efe37a14e38aa256919b
refs/heads/master: c29429f3b72fe0b593f674378e99f22d5f8bea1f
6 changes: 3 additions & 3 deletions trunk/sound/soc/codecs/tlv320dac33.c
Original file line number Diff line number Diff line change
Expand Up @@ -55,13 +55,13 @@
#define BURST_BASEFREQ_HZ 49152000

#define SAMPLES_TO_US(rate, samples) \
(1000000000 / ((rate * 1000) / samples))
(1000000000 / (((rate) * 1000) / (samples)))

#define US_TO_SAMPLES(rate, us) \
(rate / (1000000 / (us < 1000000 ? us : 1000000)))
((rate) / (1000000 / ((us) < 1000000 ? (us) : 1000000)))

#define UTHR_FROM_PERIOD_SIZE(samples, playrate, burstrate) \
((samples * 5000) / ((burstrate * 5000) / (burstrate - playrate)))
(((samples)*5000) / (((burstrate)*5000) / ((burstrate) - (playrate))))

static void dac33_calculate_times(struct snd_pcm_substream *substream);
static int dac33_prepare_chip(struct snd_pcm_substream *substream);
Expand Down

0 comments on commit 271ea35

Please sign in to comment.