toshiba_acpi: fix section mismatch in allyesconfig

Fix section error (allyesconfig). The exit function is called from init,
so functions that are called by the exit function cannot be marked __exit.

WARNING: drivers/built-in.o(.text+0xe5bc6): Section mismatch: reference to .exit.
text: (between 'toshiba_acpi_exit' and 'hci_raw')

Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Cc: Len Brown <len.brown@intel.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by Randy Dunlap and committed by Linus Torvalds b1d93de3 3e903e7b

+1 -1
+1 -1
drivers/acpi/toshiba_acpi.c
··· 524 524 return AE_OK; 525 525 } 526 526 527 - static acpi_status __exit remove_device(void) 527 + static acpi_status remove_device(void) 528 528 { 529 529 ProcItem *item; 530 530