diff options
author | danh-arm <dan.handley@arm.com> | 2015-03-05 15:02:41 +0000 |
---|---|---|
committer | danh-arm <dan.handley@arm.com> | 2015-03-05 15:02:41 +0000 |
commit | 5930eadbe5d8d4c3f15fd910476f72cd5bf86f44 (patch) | |
tree | c088f032c61d12d7cd0ee35c1fad18efddba8fb7 /services/std_svc/psci/psci_afflvl_suspend.c | |
parent | 0412c66a9e5a55e960055d80e2ff604fadf1ca3e (diff) | |
parent | ba592e280229c8d86e2ad688d0eba11b70172f5f (diff) |
Merge pull request #261 from sandrine-bailleux/sb/coding-style
Ignore C library files when checking coding style
Fix violations to the coding style
Diffstat (limited to 'services/std_svc/psci/psci_afflvl_suspend.c')
-rw-r--r-- | services/std_svc/psci/psci_afflvl_suspend.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/services/std_svc/psci/psci_afflvl_suspend.c b/services/std_svc/psci/psci_afflvl_suspend.c index dad0cefd..76e8c908 100644 --- a/services/std_svc/psci/psci_afflvl_suspend.c +++ b/services/std_svc/psci/psci_afflvl_suspend.c @@ -58,7 +58,7 @@ void psci_set_suspend_power_state(unsigned int power_state) * powered down during a cpu_suspend call. Returns PSCI_INVALID_DATA if the * power state is invalid. ******************************************************************************/ -int psci_get_suspend_afflvl() +int psci_get_suspend_afflvl(void) { unsigned int power_state; @@ -73,7 +73,7 @@ int psci_get_suspend_afflvl() * parameter saved in the per-cpu data array. Returns PSCI_INVALID_DATA if the * power state saved is invalid. ******************************************************************************/ -int psci_get_suspend_stateid() +int psci_get_suspend_stateid(void) { unsigned int power_state; |