lkml.org 
[lkml]   [2009]   [Nov]   [8]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH] ata: Clean up hard coded array size calculation.
    Date
    Use ARRAY_SIZE macro of kernel api instead.

    Signed-off-by: Thiago Farina <tfransosi@gmail.com>
    ---
    drivers/ata/sata_mv.c | 2 +-
    1 files changed, 1 insertions(+), 1 deletions(-)

    diff --git a/drivers/ata/sata_mv.c b/drivers/ata/sata_mv.c
    index 6f5093b..a8a7be0 100644
    --- a/drivers/ata/sata_mv.c
    +++ b/drivers/ata/sata_mv.c
    @@ -2217,7 +2217,7 @@ static unsigned int mv_qc_issue_fis(struct ata_queued_cmd *qc)
    int err = 0;

    ata_tf_to_fis(&qc->tf, link->pmp, 1, (void *)fis);
    - err = mv_send_fis(ap, fis, sizeof(fis) / sizeof(fis[0]));
    + err = mv_send_fis(ap, fis, ARRAY_SIZE(fis));
    if (err)
    return err;

    --
    1.6.5.2.150.g1b52a


    \
     
     \ /
      Last update: 2009-11-08 20:33    [W:6.988 / U:0.088 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site