diff options
| author | Yang Li <[email protected]> | 2021-04-29 01:26:29 +0000 |
|---|---|---|
| committer | Catalin Marinas <[email protected]> | 2021-04-29 09:22:12 +0000 |
| commit | 9b924f4f0d8f9557f4ef8a8d1468d507a662cef1 (patch) | |
| tree | 1ce2339018984711e386e47c94ab7bb5818981aa /drivers/firmware/psci/psci.c | |
| parent | ACPI: irq: Prevent unregistering of GIC SGIs (diff) | |
| download | kernel-9b924f4f0d8f9557f4ef8a8d1468d507a662cef1.tar.gz kernel-9b924f4f0d8f9557f4ef8a8d1468d507a662cef1.zip | |
psci: Remove unneeded semicolon
Eliminate the following coccicheck warning:
./drivers/firmware/psci/psci.c:141:2-3: Unneeded semicolon
Reported-by: Abaci Robot <[email protected]>
Signed-off-by: Yang Li <[email protected]>
Acked-by: Lorenzo Pieralisi <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Catalin Marinas <[email protected]>
Diffstat (limited to 'drivers/firmware/psci/psci.c')
| -rw-r--r-- | drivers/firmware/psci/psci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/firmware/psci/psci.c b/drivers/firmware/psci/psci.c index f5fc429cae3f..35b355e68e6d 100644 --- a/drivers/firmware/psci/psci.c +++ b/drivers/firmware/psci/psci.c @@ -138,7 +138,7 @@ static int psci_to_linux_errno(int errno) return -EINVAL; case PSCI_RET_DENIED: return -EPERM; - }; + } return -EINVAL; } |
