Commit 400fd978 authored by Andreas Eversberg's avatar Andreas Eversberg Committed by Karsten Keil

mISDN: Minor cleanups

Signed-off-by: default avatarAndreas Eversberg <andreas@eversberg.eu>
Signed-off-by: default avatarKarsten Keil <kkeil@suse.de>
parent b36b654a
...@@ -2333,10 +2333,10 @@ HFC_init(void) ...@@ -2333,10 +2333,10 @@ HFC_init(void)
poll = HFCPCI_BTRANS_THRESHOLD; poll = HFCPCI_BTRANS_THRESHOLD;
if (poll != HFCPCI_BTRANS_THRESHOLD) { if (poll != HFCPCI_BTRANS_THRESHOLD) {
tics = poll * HZ / 8000; tics = (poll * HZ) / 8000;
if (tics < 1) if (tics < 1)
tics = 1; tics = 1;
poll = tics * 8000 / HZ; poll = (tics * 8000) / HZ;
if (poll > 256 || poll < 8) { if (poll > 256 || poll < 8) {
printk(KERN_ERR "%s: Wrong poll value %d not in range " printk(KERN_ERR "%s: Wrong poll value %d not in range "
"of 8..256.\n", __func__, poll); "of 8..256.\n", __func__, poll);
......
...@@ -1141,7 +1141,7 @@ static int dsp_init(void) ...@@ -1141,7 +1141,7 @@ static int dsp_init(void)
} else { } else {
poll = 8; poll = 8;
while (poll <= MAX_POLL) { while (poll <= MAX_POLL) {
tics = poll * HZ / 8000; tics = (poll * HZ) / 8000;
if (tics * 8000 == poll * HZ) { if (tics * 8000 == poll * HZ) {
dsp_tics = tics; dsp_tics = tics;
dsp_poll = poll; dsp_poll = poll;
......
...@@ -92,7 +92,7 @@ int mISDN_dsp_element_register(struct mISDN_dsp_element *elem) ...@@ -92,7 +92,7 @@ int mISDN_dsp_element_register(struct mISDN_dsp_element *elem)
if (!elem) if (!elem)
return -EINVAL; return -EINVAL;
entry = kzalloc(sizeof(struct dsp_element_entry), GFP_KERNEL); entry = kzalloc(sizeof(struct dsp_element_entry), GFP_ATOMIC);
if (!entry) if (!entry)
return -ENOMEM; return -ENOMEM;
...@@ -253,7 +253,7 @@ int dsp_pipeline_build(struct dsp_pipeline *pipeline, const char *cfg) ...@@ -253,7 +253,7 @@ int dsp_pipeline_build(struct dsp_pipeline *pipeline, const char *cfg)
if (!len) if (!len)
return 0; return 0;
dup = kmalloc(len + 1, GFP_KERNEL); dup = kmalloc(len + 1, GFP_ATOMIC);
if (!dup) if (!dup)
return 0; return 0;
strcpy(dup, cfg); strcpy(dup, cfg);
...@@ -270,7 +270,7 @@ int dsp_pipeline_build(struct dsp_pipeline *pipeline, const char *cfg) ...@@ -270,7 +270,7 @@ int dsp_pipeline_build(struct dsp_pipeline *pipeline, const char *cfg)
elem = entry->elem; elem = entry->elem;
pipeline_entry = kmalloc(sizeof(struct pipeline_entry = kmalloc(sizeof(struct
dsp_pipeline_entry), GFP_KERNEL); dsp_pipeline_entry), GFP_ATOMIC);
if (!pipeline_entry) { if (!pipeline_entry) {
printk(KERN_ERR "%s: failed to add " printk(KERN_ERR "%s: failed to add "
"entry to pipeline: %s (out of " "entry to pipeline: %s (out of "
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment