Commit 81882d97 authored by Rusty Russell's avatar Rusty Russell Committed by Linus Torvalds

[PATCH] 2.5.8-pre3 set_bit cleanup IV

This changes everything arch specific PPC and i386 which should have
been unsigned long (it doesn't *matter*, but bad habits get copied to
where it does matter).

No object code changes
parent be54478d
...@@ -492,7 +492,7 @@ pmac_pic_init(void) ...@@ -492,7 +492,7 @@ pmac_pic_init(void)
* and disables all interrupts except for the nominated one. * and disables all interrupts except for the nominated one.
* sleep_restore_intrs() restores the states of all interrupt enables. * sleep_restore_intrs() restores the states of all interrupt enables.
*/ */
unsigned int sleep_save_mask[2]; unsigned long sleep_save_mask[2];
void __pmac void __pmac
pmac_sleep_save_intrs(int viaint) pmac_sleep_save_intrs(int viaint)
......
...@@ -77,7 +77,7 @@ struct notifier_block *adb_client_list = NULL; ...@@ -77,7 +77,7 @@ struct notifier_block *adb_client_list = NULL;
static int adb_got_sleep = 0; static int adb_got_sleep = 0;
static int adb_inited = 0; static int adb_inited = 0;
static pid_t adb_probe_task_pid; static pid_t adb_probe_task_pid;
static int adb_probe_task_flag; static unsigned long adb_probe_task_flag;
static wait_queue_head_t adb_probe_task_wq; static wait_queue_head_t adb_probe_task_wq;
static int sleepy_trackpad; static int sleepy_trackpad;
int __adb_probe_sync; int __adb_probe_sync;
...@@ -439,7 +439,7 @@ adb_probe_wakeup(struct adb_request *req) ...@@ -439,7 +439,7 @@ adb_probe_wakeup(struct adb_request *req)
} }
static struct adb_request adb_sreq; static struct adb_request adb_sreq;
static int adb_sreq_lock; // Use semaphore ! */ static unsigned long adb_sreq_lock; // Use semaphore ! */
int int
adb_request(struct adb_request *req, void (*done)(struct adb_request *), adb_request(struct adb_request *req, void (*done)(struct adb_request *),
......
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
struct thread_info { struct thread_info {
struct task_struct *task; /* main task structure */ struct task_struct *task; /* main task structure */
struct exec_domain *exec_domain; /* execution domain */ struct exec_domain *exec_domain; /* execution domain */
__u32 flags; /* low level flags */ unsigned long flags; /* low level flags */
__u32 cpu; /* current CPU */ __u32 cpu; /* current CPU */
__s32 preempt_count; /* 0 => preemptable, <0 => BUG */ __s32 preempt_count; /* 0 => preemptable, <0 => BUG */
......
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