diff options
author | Christophe Lombard <clombard@linux.vnet.ibm.com> | 2017-04-07 10:11:57 -0400 |
---|---|---|
committer | Michael Ellerman <mpe@ellerman.id.au> | 2017-04-13 09:34:30 -0400 |
commit | 64663f372c72cedeba1b1dc86df9cc159ae5a93d (patch) | |
tree | b90a385b03752d6b418966a616c363e52d8375eb /drivers/misc/cxl/guest.c | |
parent | bdd2e7150644fee4de7167a3e08294ef32eeda11 (diff) |
cxl: Rename some psl8 specific functions
Rename a few functions, changing the '_psl' suffix to '_psl8', to make
clear that the implementation is psl8 specific.
Those functions will have an equivalent implementation for the psl9 in
a later patch.
Signed-off-by: Christophe Lombard <clombard@linux.vnet.ibm.com>
Reviewed-by: Andrew Donnellan <andrew.donnellan@au1.ibm.com>
Acked-by: Frederic Barrat <fbarrat@linux.vnet.ibm.com>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Diffstat (limited to 'drivers/misc/cxl/guest.c')
-rw-r--r-- | drivers/misc/cxl/guest.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/misc/cxl/guest.c b/drivers/misc/cxl/guest.c index f6ba69889e40..3ad73817b566 100644 --- a/drivers/misc/cxl/guest.c +++ b/drivers/misc/cxl/guest.c | |||
@@ -169,7 +169,7 @@ static irqreturn_t guest_psl_irq(int irq, void *data) | |||
169 | return IRQ_HANDLED; | 169 | return IRQ_HANDLED; |
170 | } | 170 | } |
171 | 171 | ||
172 | rc = cxl_irq_psl(irq, ctx, &irq_info); | 172 | rc = cxl_irq_psl8(irq, ctx, &irq_info); |
173 | return rc; | 173 | return rc; |
174 | } | 174 | } |
175 | 175 | ||