diff options
author | Rehas Sachdeva <aquannie@gmail.com> | 2016-09-15 21:33:21 (GMT) |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2016-09-16 07:49:56 (GMT) |
commit | 1fed320aaeb0f8c75860f2e772619bf18d2144eb (patch) | |
tree | 7cf11fd8bd1df3ef63efee31be1d71f81e4d939d | |
parent | 71b4de84a0ef8b495da3d3ca884e3e601b05af1b (diff) | |
download | linux-1fed320aaeb0f8c75860f2e772619bf18d2144eb.tar.xz |
staging: sm750fb: Change 'uint32_t' to 'u32'
It is preferred to use 'u32' instead of 'uint32_t' for unsigned int. Issue
detected by checkpatch.
Signed-off-by: Rehas Sachdeva <aquannie@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/staging/sm750fb/sm750_hw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/sm750fb/sm750_hw.c b/drivers/staging/sm750fb/sm750_hw.c index 1de9f81..a376d17 100644 --- a/drivers/staging/sm750fb/sm750_hw.c +++ b/drivers/staging/sm750fb/sm750_hw.c @@ -534,7 +534,7 @@ int hw_sm750_pan_display(struct lynxfb_crtc *crtc, const struct fb_var_screeninfo *var, const struct fb_info *info) { - uint32_t total; + u32 total; /* check params */ if ((var->xoffset + var->xres > var->xres_virtual) || (var->yoffset + var->yres > var->yres_virtual)) { |