ufs-exynos: don't use boolean statement in switch-case
authorYaroslav Furman <yaro330@gmail.com>
Fri, 22 Jun 2018 18:00:27 +0000 (21:00 +0300)
committerMichael Benedict <michaelbt@live.com>
Sat, 31 Aug 2019 15:08:50 +0000 (01:08 +1000)
Convert it to int because it's not really a boolean.
Signed-off-by: Yaroslav Furman <yaro330@gmail.com>
drivers/scsi/ufs/ufs-exynos.c
drivers/scsi/ufs/ufshcd.h

index a85bb68dcc557ee4fe57832c4d913249224535ed..f9efa70a8350d8c5a37d5c1600f479c2fd2af982 100644 (file)
@@ -1820,7 +1820,7 @@ static void exynos_ufs_set_nexus_t_task_mgmt(struct ufs_hba *hba, int tag, u8 tm
 }
 
 static void exynos_ufs_hibern8_notify(struct ufs_hba *hba,
-                               u8 enter, bool notify)
+                               u8 enter, int notify)
 {
        switch (notify) {
        case PRE_CHANGE:
index 18c14a003ffef67ae60f85e2b04828749a3b1880..8aedb4603231a69f682c426cbcbd9f8783129df2 100644 (file)
@@ -310,7 +310,7 @@ struct ufs_hba_variant_ops {
        void    (*set_nexus_t_xfer_req)(struct ufs_hba *,
                                        int, struct scsi_cmnd *);
        void    (*set_nexus_t_task_mgmt)(struct ufs_hba *, int, u8);
-       void    (*hibern8_notify)(struct ufs_hba *, u8, bool);
+       void    (*hibern8_notify)(struct ufs_hba *, u8, int);
        int     (*suspend)(struct ufs_hba *, enum ufs_pm_op);
        int     (*resume)(struct ufs_hba *, enum ufs_pm_op);
        void    (*dbg_register_dump)(struct ufs_hba *hba);