This patch removes redudant check of PLL ID. struct uniphier_aio_pll
enable member has already been checked at is_valid_pll().
Signed-off-by: Katsuhiro Suzuki <suzuki.katsuhiro@socionext.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
                                unsigned int freq_out)
 {
        struct uniphier_aio *aio = uniphier_priv(dai);
-       struct device *dev = &aio->chip->pdev->dev;
        int ret;
 
        if (!is_valid_pll(aio->chip, pll_id))
                return -EINVAL;
-       if (!aio->chip->plls[pll_id].enable) {
-               dev_err(dev, "PLL(%d) is not implemented\n", pll_id);
-               return -ENOTSUPP;
-       }
 
        ret = aio_chip_set_pll(aio->chip, pll_id, freq_out);
        if (ret < 0)