]> asedeno.scripts.mit.edu Git - linux.git/blobdiff - drivers/rtc/rtc-88pm80x.c
drm/komeda: Update the chip identify
[linux.git] / drivers / rtc / rtc-88pm80x.c
index 1fc48ebd3cd05ebe6a6d00b983a7444eeb773921..75779e8501a30a21ca481fd51d53f2f38abaef20 100644 (file)
@@ -1,22 +1,10 @@
+// SPDX-License-Identifier: GPL-2.0
 /*
  * Real Time Clock driver for Marvell 88PM80x PMIC
  *
  * Copyright (c) 2012 Marvell International Ltd.
  *  Wenzeng Chen<wzch@marvell.com>
  *  Qiao Zhou <zhouqiao@marvell.com>
- *
- * This file is subject to the terms and conditions of the GNU General
- * Public License. See the file "COPYING" in the main directory of this
- * archive for more details.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  */
 
 #include <linux/kernel.h>
@@ -276,7 +264,6 @@ static int pm80x_rtc_probe(struct platform_device *pdev)
                return -ENOMEM;
        info->irq = platform_get_irq(pdev, 0);
        if (info->irq < 0) {
-               dev_err(&pdev->dev, "No IRQ resource!\n");
                ret = -EINVAL;
                goto out;
        }
@@ -308,10 +295,9 @@ static int pm80x_rtc_probe(struct platform_device *pdev)
        info->rtc_dev->range_max = U32_MAX;
 
        ret = rtc_register_device(info->rtc_dev);
-       if (ret) {
-               dev_err(&pdev->dev, "Failed to register RTC device: %d\n", ret);
+       if (ret)
                goto out_rtc;
-       }
+
        /*
         * enable internal XO instead of internal 3.25MHz clock since it can
         * free running in PMIC power-down state.