Re: of_compat_cmp on various platforms

2007-11-28 Thread Stephen Rothwell
On Tue, 27 Nov 2007 22:46:16 -0500 "Jon Smirl" <[EMAIL PROTECTED]> wrote: > > Is this right or should it be the same everywhere? > > asm-powerpc/prom.h:#define of_compat_cmp(s1, s2, l) strcasecmp((s1), (s2)) > asm-sparc/prom.h:#define of_compat_cmp(s1, s2, l) strncmp((s1), (s2), > (l))

of_compat_cmp on various platforms

2007-11-27 Thread Jon Smirl
Is this right or should it be the same everywhere? asm-powerpc/prom.h:#define of_compat_cmp(s1, s2, l) strcasecmp((s1), (s2)) asm-sparc/prom.h:#define of_compat_cmp(s1, s2, l) strncmp((s1), (s2), (l)) asm-sparc64/prom.h:#define of_compat_cmp(s1, s2, l) strncmp((s1), (s2), (l)) -- J