Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

orinoco: Move EXPORT_SYMBOL declarations next to exported function

Signed-off-by: David Kilroy <kilroyd@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>

authored by

David Kilroy and committed by
John W. Linville
82a06ee5 a1d81f15

+7 -10
+7 -10
drivers/net/wireless/hermes.c
··· 122 122 hw->reg_spacing = reg_spacing; 123 123 hw->inten = 0x0; 124 124 } 125 + EXPORT_SYMBOL(hermes_struct_init); 125 126 126 127 int hermes_init(hermes_t *hw) 127 128 { ··· 203 202 out: 204 203 return err; 205 204 } 205 + EXPORT_SYMBOL(hermes_init); 206 206 207 207 /* Issue a command to the chip, and (busy!) wait for it to 208 208 * complete. ··· 274 272 out: 275 273 return err; 276 274 } 275 + EXPORT_SYMBOL(hermes_docmd_wait); 277 276 278 277 int hermes_allocate(hermes_t *hw, u16 size, u16 *fid) 279 278 { ··· 317 314 318 315 return 0; 319 316 } 320 - 317 + EXPORT_SYMBOL(hermes_allocate); 321 318 322 319 /* Set up a BAP to read a particular chunk of data from card's internal buffer. 323 320 * ··· 401 398 out: 402 399 return err; 403 400 } 401 + EXPORT_SYMBOL(hermes_bap_pread); 404 402 405 403 /* Write a block of data to the chip's buffer, via the 406 404 * BAP. Synchronization/serialization is the caller's problem. ··· 427 423 out: 428 424 return err; 429 425 } 426 + EXPORT_SYMBOL(hermes_bap_pwrite); 430 427 431 428 /* Read a Length-Type-Value record from the card. 432 429 * ··· 481 476 482 477 return 0; 483 478 } 479 + EXPORT_SYMBOL(hermes_read_ltv); 484 480 485 481 int hermes_write_ltv(hermes_t *hw, int bap, u16 rid, 486 482 u16 length, const void *value) ··· 509 503 510 504 return err; 511 505 } 512 - 513 - EXPORT_SYMBOL(hermes_struct_init); 514 - EXPORT_SYMBOL(hermes_init); 515 - EXPORT_SYMBOL(hermes_docmd_wait); 516 - EXPORT_SYMBOL(hermes_allocate); 517 - 518 - EXPORT_SYMBOL(hermes_bap_pread); 519 - EXPORT_SYMBOL(hermes_bap_pwrite); 520 - EXPORT_SYMBOL(hermes_read_ltv); 521 506 EXPORT_SYMBOL(hermes_write_ltv); 522 507 523 508 static int __init init_hermes(void)