lkml.org 
[lkml]   [2023]   [Jan]   [26]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH 14/24] rtc: pm8xxx: clean up local declarations
    Date
    Clean up local declarations somewhat by using the reverse xmas style
    consistently throughout.

    Signed-off-by: Johan Hovold <johan+linaro@kernel.org>
    ---
    drivers/rtc/rtc-pm8xxx.c | 14 +++++++-------
    1 file changed, 7 insertions(+), 7 deletions(-)

    diff --git a/drivers/rtc/rtc-pm8xxx.c b/drivers/rtc/rtc-pm8xxx.c
    index 2f96a178595c..922aef0f0241 100644
    --- a/drivers/rtc/rtc-pm8xxx.c
    +++ b/drivers/rtc/rtc-pm8xxx.c
    @@ -177,9 +177,9 @@ static int pm8xxx_rtc_read_time(struct device *dev, struct rtc_time *tm)

    static int pm8xxx_rtc_set_alarm(struct device *dev, struct rtc_wkalrm *alarm)
    {
    - u8 value[NUM_8_BIT_RTC_REGS];
    struct pm8xxx_rtc *rtc_dd = dev_get_drvdata(dev);
    const struct pm8xxx_rtc_regs *regs = rtc_dd->regs;
    + u8 value[NUM_8_BIT_RTC_REGS];
    u32 secs;
    int rc;

    @@ -210,12 +210,12 @@ static int pm8xxx_rtc_set_alarm(struct device *dev, struct rtc_wkalrm *alarm)

    static int pm8xxx_rtc_read_alarm(struct device *dev, struct rtc_wkalrm *alarm)
    {
    - int rc;
    - unsigned int ctrl_reg;
    - u8 value[NUM_8_BIT_RTC_REGS];
    struct pm8xxx_rtc *rtc_dd = dev_get_drvdata(dev);
    const struct pm8xxx_rtc_regs *regs = rtc_dd->regs;
    + u8 value[NUM_8_BIT_RTC_REGS];
    + unsigned int ctrl_reg;
    u32 secs;
    + int rc;

    rc = regmap_bulk_read(rtc_dd->regmap, regs->alarm_rw, value,
    sizeof(value));
    @@ -238,11 +238,11 @@ static int pm8xxx_rtc_read_alarm(struct device *dev, struct rtc_wkalrm *alarm)

    static int pm8xxx_rtc_alarm_irq_enable(struct device *dev, unsigned int enable)
    {
    - int rc;
    struct pm8xxx_rtc *rtc_dd = dev_get_drvdata(dev);
    const struct pm8xxx_rtc_regs *regs = rtc_dd->regs;
    u8 value[NUM_8_BIT_RTC_REGS] = {0};
    unsigned int val;
    + int rc;

    if (enable)
    val = regs->alarm_en;
    @@ -355,9 +355,9 @@ MODULE_DEVICE_TABLE(of, pm8xxx_id_table);

    static int pm8xxx_rtc_probe(struct platform_device *pdev)
    {
    - int rc;
    - struct pm8xxx_rtc *rtc_dd;
    const struct of_device_id *match;
    + struct pm8xxx_rtc *rtc_dd;
    + int rc;

    match = of_match_node(pm8xxx_id_table, pdev->dev.of_node);
    if (!match)
    --
    2.39.1
    \
     
     \ /
      Last update: 2023-03-26 23:56    [W:3.071 / U:0.016 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site