From: Roberto Nibali <ratz@drugphish.ch>
To: Dave Jones <davej@suse.de>
Cc: Linux Kernel <linux-kernel@vger.kernel.org>,
Jaroslav Kysela <perex@suse.cz>
Subject: Re: Linux 2.5.5-dj2
Date: Wed, 27 Feb 2002 02:49:11 +0100 [thread overview]
Message-ID: <3C7C3B17.9050905@drugphish.ch> (raw)
In-Reply-To: <20020226223406.A26905@suse.de>
[-- Attachment #1: Type: text/plain, Size: 1045 bytes --]
Dave Jones wrote:
> Right up to date with Marcelo & Linus, and clear inbound patch queue.
> Despite the growing size, resync with Linus is still in progress,
> and some of the bigger bits have now either shown up in pre1, or
> are queued to go his way real soon.
This should be the last time I bother you today. I have some fixes for
your 2.5.5-dj2 tree. Please consider applying.
compile-2.5.5-dj2.diff:
o include missing <linux/interrupt.h>
o spelling corrections
o fix compile warnings
o NOTE: rtc_timer.c has lots of useless #ifdef's, why can't we not
just get rid of those? I talk about the USE_TASKLET. Or does the
ALSA group plan to use something else then tasklets?
compile_warn_alsa.diff:
o fix compile warnings
compile_warn_irda.diff:
o fix compile warnings
compile_warn_vm.diff
o fix compile warnings
There are still tons of compile warnings. If you're interested I can
email them to you or put them in the web somewhere. Just in case you're
getting bored ;)
Best regards,
Roberto Nibali, ratz
[-- Attachment #2: compile-2.5.5-dj2.diff --]
[-- Type: text/plain, Size: 847 bytes --]
diff -ur linux-2.5.5-dj2-orig/sound/core/rtctimer.c linux-2.5.5/sound/core/rtctimer.c
--- linux-2.5.5-dj2-orig/sound/core/rtctimer.c Wed Feb 27 00:34:38 2002
+++ linux-2.5.5/sound/core/rtctimer.c Wed Feb 27 02:15:05 2002
@@ -31,6 +31,7 @@
#include <sound/driver.h>
#include <linux/init.h>
#include <linux/time.h>
+#include <linux/interrupt.h>
#include <sound/core.h>
#include <sound/timer.h>
#include <sound/info.h>
@@ -59,7 +60,7 @@
/*
- * The harware depenant description for this timer.
+ * The hardware dependant description for this timer.
*/
static struct _snd_timer_hardware rtc_hw = {
flags: SNDRV_TIMER_HW_FIRST|SNDRV_TIMER_HW_AUTO,
@@ -210,9 +211,11 @@
/*
- * exported stuffs
+ * exported stuff
*/
+#ifdef MODULE
module_init(rtctimer_init)
+#endif
module_exit(rtctimer_exit)
MODULE_PARM(rtctimer_freq, "i");
[-- Attachment #3: compile_warn_alsa.diff --]
[-- Type: text/plain, Size: 999 bytes --]
diff -ur linux-2.5.5-dj2-orig/sound/core/pcm_lib.c linux-2.5.5/sound/core/pcm_lib.c
--- linux-2.5.5-dj2-orig/sound/core/pcm_lib.c Wed Feb 27 00:34:38 2002
+++ linux-2.5.5/sound/core/pcm_lib.c Wed Feb 27 01:24:17 2002
@@ -1130,11 +1130,12 @@
snd_pcm_hw_params_t *params,
snd_pcm_hw_param_t var, int *dir)
{
+ int err;
int changed = _snd_pcm_hw_param_first(params, var);
if (changed < 0)
return changed;
if (params->rmask) {
- int err = snd_pcm_hw_refine(pcm, params);
+ err = snd_pcm_hw_refine(pcm, params);
assert(err >= 0);
}
return snd_pcm_hw_param_value(params, var, dir);
@@ -1168,11 +1169,12 @@
snd_pcm_hw_params_t *params,
snd_pcm_hw_param_t var, int *dir)
{
+ int err;
int changed = _snd_pcm_hw_param_last(params, var);
if (changed < 0)
return changed;
if (params->rmask) {
- int err = snd_pcm_hw_refine(pcm, params);
+ err = snd_pcm_hw_refine(pcm, params);
assert(err >= 0);
}
return snd_pcm_hw_param_value(params, var, dir);
[-- Attachment #4: compile_warn_irda.diff --]
[-- Type: text/plain, Size: 441 bytes --]
diff -ur linux-2.5.5-dj2-orig/drivers/net/irda/ali-ircc.c linux-2.5.5/drivers/net/irda/ali-ircc.c
--- linux-2.5.5-dj2-orig/drivers/net/irda/ali-ircc.c Wed Feb 27 00:34:35 2002
+++ linux-2.5.5/drivers/net/irda/ali-ircc.c Wed Feb 27 02:20:51 2002
@@ -258,7 +258,6 @@
struct ali_ircc_cb *self;
struct pm_dev *pmdev;
int dongle_id;
- int ret;
int err;
IRDA_DEBUG(2, __FUNCTION__ "(), ---------------- Start ----------------\n");
[-- Attachment #5: compile_warn_vm.diff --]
[-- Type: text/plain, Size: 504 bytes --]
diff -ur linux-2.5.5-dj2-orig/mm/vmscan.c linux-2.5.5/mm/vmscan.c
--- linux-2.5.5-dj2-orig/mm/vmscan.c Wed Feb 27 00:34:38 2002
+++ linux-2.5.5/mm/vmscan.c Wed Feb 27 01:18:36 2002
@@ -581,7 +581,6 @@
static int FASTCALL(shrink_caches(zone_t * classzone, int priority, unsigned int gfp_mask, int nr_pages));
static int shrink_caches(zone_t * classzone, int priority, unsigned int gfp_mask, int nr_pages)
{
- int chunk_size = nr_pages;
unsigned long ratio;
nr_pages -= kmem_cache_reap(gfp_mask);
next prev parent reply other threads:[~2002-02-27 1:54 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2002-02-26 22:34 Linux 2.5.5-dj2 Dave Jones
2002-02-26 23:32 ` Roberto Nibali
2002-02-26 23:39 ` Dave Jones
2002-02-26 23:41 ` Roberto Nibali
2002-02-26 23:52 ` Dave Jones
2002-02-27 1:49 ` Roberto Nibali [this message]
2002-02-27 16:13 ` Linux 2.5.5-dj2 oops Ben Clifford
2002-02-27 16:20 ` Dave Jones
2002-02-27 17:30 ` James Simmons
2002-02-28 17:18 ` Linux 2.5.5-dj2 Wayne Whitney
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=3C7C3B17.9050905@drugphish.ch \
--to=ratz@drugphish.ch \
--cc=davej@suse.de \
--cc=linux-kernel@vger.kernel.org \
--cc=perex@suse.cz \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox