1. 15 Mar, 2015 20 commits
  2. 13 Mar, 2015 2 commits
  3. 12 Mar, 2015 13 commits
  4. 10 Mar, 2015 5 commits
    • Greg Kroah-Hartman's avatar
      Staging: sm750fb: provide error path for hw_sm750le_setBLANK() · e74ac550
      Greg Kroah-Hartman authored
      This provides a default path for the switch statement in
      hw_sm750le_setBLANK() so that the compiler will not correctly complain
      about undefined values being sent to the hardware.
      
      Instead, properly error out if the blank command is unknown by the
      driver.
      
      Cc: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
      Cc: Teddy Wang <teddy.wang@siliconmotion.com>
      Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      e74ac550
    • Greg Kroah-Hartman's avatar
      Staging: sm750fb: fix hw_imageblit parameters · 7c6f3fdc
      Greg Kroah-Hartman authored
      Fix up hw_imageblit() so that the function paramaters match up with what
      the driver expects them to be when using it as a function pointer.
      
      Cc: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
      Cc: Teddy Wang <teddy.wang@siliconmotion.com>
      Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      7c6f3fdc
    • Greg Kroah-Hartman's avatar
      Staging: sm750fb: fix build warning with lynx_accel · bf2fbc2a
      Greg Kroah-Hartman authored
      Change the return value of lynx_accel to be void, to fix the build
      warning, and due to the fact that the function can't seem to fail at
      all, and no one cares if it does or not.
      
      Cc: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
      Cc: Teddy Wang <teddy.wang@siliconmotion.com>
      Signed-off-by: Greg Kroah-Hartman gregkh@linuxfoundation.org
      bf2fbc2a
    • Greg Kroah-Hartman's avatar
      Staging: sm750fb: fix build warning with proc_panDisplay · 3009de60
      Greg Kroah-Hartman authored
      Change the options to the proc_panDisplay function pointer to match the
      function pointer that we want to assign to it, in order to remove the
      build warning.
      
      Cc: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
      Cc: Teddy Wang <teddy.wang@siliconmotion.com>
      Signed-off-by: Greg Kroah-Hartman gregkh@linuxfoundation.org
      3009de60
    • Lorenzo Stoakes's avatar
      staging: sm750fb: Cleanup the type of mmio750 · f8b0dced
      Lorenzo Stoakes authored
      This patch assigns the more appropriate void* type to the mmio750 variable
      eliminating an unnecessary volatile qualifier in the process. Additionally it
      updates parameter types as necessary where those parameters interact with
      mmio750, removes unnecessary casts and updates the type of the
      lynx_share->pvReg field which is passed to the ddk750_set_mmio method.
      
      As a consequence, this patch fixes the following sparse warning:-
      
      drivers/staging/sm750fb/ddk750_help.c:12:17: warning: incorrect type in assignment (different address spaces)
      Signed-off-by: default avatarLorenzo Stoakes <lstoakes@gmail.com>
      Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      f8b0dced