diff options
author | 2024-08-28 18:49:51 +0800 | |
---|---|---|
committer | 2024-10-14 08:54:46 +0000 | |
commit | 1cbe974f816cf40bc0437ebabe26b453331fb0d9 (patch) | |
tree | 3fa6f3f9a1b303c74391db13b708650ff14dc108 | |
parent | Linux 6.12-rc1 (diff) | |
download | linux-rng-1cbe974f816cf40bc0437ebabe26b453331fb0d9.tar.xz linux-rng-1cbe974f816cf40bc0437ebabe26b453331fb0d9.zip |
soc: hisilicon: kunpeng_hccs: Fix a PCC typo
Fix a PCC typo.
Signed-off-by: Huisong Li <lihuisong@huawei.com>
Reviewed-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Signed-off-by: Wei Xu <xuwei5@hisilicon.com>
-rw-r--r-- | drivers/soc/hisilicon/kunpeng_hccs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/soc/hisilicon/kunpeng_hccs.c b/drivers/soc/hisilicon/kunpeng_hccs.c index e882a61636ec..c4a57328f22a 100644 --- a/drivers/soc/hisilicon/kunpeng_hccs.c +++ b/drivers/soc/hisilicon/kunpeng_hccs.c @@ -144,7 +144,7 @@ static int hccs_register_pcc_channel(struct hccs_dev *hdev) pcc_chan = pcc_mbox_request_channel(cl, hdev->chan_id); if (IS_ERR(pcc_chan)) { - dev_err(dev, "PPC channel request failed.\n"); + dev_err(dev, "PCC channel request failed.\n"); rc = -ENODEV; goto out; } |