Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
sdio_stubs.c
Go to the documentation of this file.
1 /*
2  * Stubs for some of the bottom edge functions.
3  *
4  * These stubs are optional functions in the bottom edge (SDIO driver
5  * interface) API that not all platforms or SDIO drivers may support.
6  *
7  * They're declared as weak symbols so they can be overridden by
8  * simply providing a non-weak declaration.
9  *
10  * Copyright (C) 2007-2008 by Cambridge Silicon Radio Ltd.
11  *
12  * Refer to LICENSE.txt included with this source code for details on
13  * the license terms.
14  *
15  */
16 #include "csr_wifi_hip_unifi.h"
17 
19 {
20 }
21 
23 {
24 }
25 
27 {
28  return CSR_RESULT_SUCCESS;
29 }
30 
32 {
33 }
34 
36 {
38 }
39 
41  u16 blockSize)
42 {
43  return CSR_RESULT_SUCCESS;
44 }
45 
46 CsrResult __attribute__((weak)) CsrSdioSuspend(CsrSdioFunction *function)
47 {
48  return CSR_RESULT_SUCCESS;
49 }
50 
51 CsrResult __attribute__((weak)) CsrSdioResume(CsrSdioFunction *function)
52 {
53  return CSR_RESULT_SUCCESS;
54 }
55 
57 {
58  return 0;
59 }
60 
62 {
63  return 0;
64 }
65 
67 {
68 }
69 
71 {
72 }
73 
75 {
76 }
77 
79 {
80 }
81 
82