ath9k_htc: Update to upstream's commit d19607454d656cb14d8c16dfbf161eebb542e8fe dated...
[linux-libre-firmware.git] / ath9k_htc / target_firmware / magpie_fw_dev / target / inc / adf_os_pci.h
index 274ae509f9df3dea69c1dced7e6bf29c4c33cec5..d8116e5cde39dfd14eb5678c7ed3457240982227 100755 (executable)
 
 /**
  * @brief Define the entry point for the PCI module.
- */ 
+ */
 #define adf_os_pci_module_init(_fn)     __adf_os_pci_module_init(_fn)
 
 /**
  * @brief Define the exit point for the PCI module.
- */ 
+ */
 #define adf_os_pci_module_exit(_fn)     __adf_os_pci_module_exit(_fn)
 
 /**
  * @brief Setup the following driver information: name, PCI IDs of devices
  * supported and some device handlers.
- */ 
+ */
 #define adf_os_pci_set_drv_info(_name, _pci_ids, _attach, _detach, _suspend, _resume) \
     __adf_os_pci_set_drv_info(_name, _pci_ids, _attach, _detach, _suspend, _resume)
 
@@ -67,8 +67,8 @@
  * @param[out] val      value read
  *
  * @return status of operation
- */ 
-static inline int 
+ */
+static inline int
 adf_os_pci_config_read8(adf_os_device_t osdev, int offset, a_uint8_t *val)
 {
     return __adf_os_pci_config_read8(osdev, offset, val);
@@ -82,8 +82,8 @@ adf_os_pci_config_read8(adf_os_device_t osdev, int offset, a_uint8_t *val)
  * @param[in] val      value to write
  *
  * @return status of operation
- */ 
-static inline int 
+ */
+static inline int
 adf_os_pci_config_write8(adf_os_device_t osdev, int offset, a_uint8_t val)
 {
     return __adf_os_pci_config_write8(osdev, offset, val);
@@ -97,8 +97,8 @@ adf_os_pci_config_write8(adf_os_device_t osdev, int offset, a_uint8_t val)
  * @param[out] val      value read
  *
  * @return status of operation
- */ 
-static inline int 
+ */
+static inline int
 adf_os_pci_config_read16(adf_os_device_t osdev, int offset, a_uint16_t *val)
 {
     return __adf_os_pci_config_read16(osdev, offset, val);
@@ -112,8 +112,8 @@ adf_os_pci_config_read16(adf_os_device_t osdev, int offset, a_uint16_t *val)
  * @param[in] val      value to write
  *
  * @return status of operation
- */ 
-static inline int 
+ */
+static inline int
 adf_os_pci_config_write16(adf_os_device_t osdev, int offset, a_uint16_t val)
 {
     return __adf_os_pci_config_write16(osdev, offset, val);
@@ -127,8 +127,8 @@ adf_os_pci_config_write16(adf_os_device_t osdev, int offset, a_uint16_t val)
  * @param[out] val      value read
  *
  * @return status of operation
- */ 
-static inline int 
+ */
+static inline int
 adf_os_pci_config_read32(adf_os_device_t osdev, int offset, a_uint32_t *val)
 {
     return __adf_os_pci_config_read32(osdev, offset, val);
@@ -142,8 +142,8 @@ adf_os_pci_config_read32(adf_os_device_t osdev, int offset, a_uint32_t *val)
  * @param[in] val      value to write
  *
  * @return status of operation
- */ 
-static inline int 
+ */
+static inline int
 adf_os_pci_config_write32(adf_os_device_t osdev, int offset, a_uint32_t val)
 {
     return __adf_os_pci_config_write32(osdev, offset, val);