| To: | linux-mips@linux-mips.org |
|---|---|
| Subject: | Ideas on removing a compiler warning in 'init_task.c' ... |
| From: | "Steven J. Hill" <sjhill@realitydiluted.com> |
| Date: | Fri, 17 Dec 2004 18:21:01 -0600 |
| Original-recipient: | rfc822;linux-mips@linux-mips.org |
| Sender: | linux-mips-bounce@linux-mips.org |
| User-agent: | Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.3) Gecko/20041007 Debian/1.7.3-5 |
I am trying to clean up a few compiler warnings. Here is one remaining one: CC arch/mips/kernel/init_task.oarch/mips/kernel/init_task.c:15: warning: initialization makes integer from pointer without a cast
which has to do with this line:
static struct sighand_struct init_sighand = INIT_SIGHAND(init_sighand);
I actually broke out the macro and it is complaining about the initialization
of 'action' member in the 'sighand_struct' defined in 'include/linux/sched.h'.
struct sighand_struct {
atomic_t count;
struct k_sigaction action[_NSIG];
spinlock_t siglock;
};
I do not see this when compiling x86 code and the MIPS structure is
not that drastically different IMHO. Anyone have some ideas on this
one?
-Steve
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | memory mapping, Srividya Ramanathan |
|---|---|
| Next by Date: | Re: CVS Update@-mips.org: linux, Maciej W. Rozycki |
| Previous by Thread: | memory mapping, Srividya Ramanathan |
| Next by Thread: | Re: Ideas on removing a compiler warning in 'init_task.c' ..., Ralf Baechle |
| Indexes: | [Date] [Thread] [Top] [All Lists] |