diff options
-rw-r--r-- | drivers/media/rc/mceusb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/rc/mceusb.c b/drivers/media/rc/mceusb.c index a5c6c1c2af82..850547fe711c 100644 --- a/drivers/media/rc/mceusb.c +++ b/drivers/media/rc/mceusb.c | |||
@@ -627,7 +627,7 @@ static void mceusb_dev_printdata(struct mceusb_dev *ir, char *buf, | |||
627 | break; | 627 | break; |
628 | case MCE_RSP_EQIRCFS: | 628 | case MCE_RSP_EQIRCFS: |
629 | period = DIV_ROUND_CLOSEST( | 629 | period = DIV_ROUND_CLOSEST( |
630 | (1 << data1 * 2) * (data2 + 1), 10); | 630 | (1U << data1 * 2) * (data2 + 1), 10); |
631 | if (!period) | 631 | if (!period) |
632 | break; | 632 | break; |
633 | carrier = (1000 * 1000) / period; | 633 | carrier = (1000 * 1000) / period; |