tracing, tty: fix warnings caused by branch tracing and tty_kref_get()
authorIngo Molnar <mingo@elte.hu>
Tue, 25 Nov 2008 07:58:11 +0000 (08:58 +0100)
committerIngo Molnar <mingo@elte.hu>
Tue, 25 Nov 2008 07:59:44 +0000 (08:59 +0100)
commit14bfc987e395797dfe03e915e8b4c7fc9e5078e4
tree660992b9d637e3055b0479ebabfdfdf0bd0cb004
parent0429149fb5e01edc410648591c19095d2074ee00
tracing, tty: fix warnings caused by branch tracing and tty_kref_get()

Stephen Rothwell reported tht this warning started triggering in
linux-next:

  In file included from init/main.c:27:
  include/linux/tty.h: In function ‘tty_kref_get’:
  include/linux/tty.h:330: warning: ‘______f’ is static but declared in inline function ‘tty_kref_get’ which is not static

Which gcc emits for 'extern inline' functions that nevertheless define
static variables. Change it to 'static inline', which is the norm
in the kernel anyway.

Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
include/linux/tty.h