> -----Original Message-----
> From: Thomas Weißschuh [mailto:[email protected]]
> Sent: Wednesday, September 07, 2016 1:21 PM
> To: J. German Rivera <[email protected]>; Stuart Yoder 
> <[email protected]>; Greg Kroah-
> Hartman <[email protected]>; [email protected]; 
> [email protected]
> Cc: Thomas Weißschuh <[email protected]>
> Subject: [PATCH] staging/fsl-mc: use consistent integer types
> 
> Signed-off-by: Thomas Weißschuh <[email protected]>
> ---
>  drivers/staging/fsl-mc/include/mc-private.h | 4 ++--
>  drivers/staging/fsl-mc/include/mc.h         | 2 +-
>  2 files changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/drivers/staging/fsl-mc/include/mc-private.h 
> b/drivers/staging/fsl-mc/include/mc-private.h
> index cab1ae9..f95ee74 100644
> --- a/drivers/staging/fsl-mc/include/mc-private.h
> +++ b/drivers/staging/fsl-mc/include/mc-private.h
> @@ -79,8 +79,8 @@ struct fsl_mc_addr_translation_range {
>   */
>  struct fsl_mc_resource_pool {
>       enum fsl_mc_pool_type type;
> -     int16_t max_count;
> -     int16_t free_count;
> +     i16 max_count;
> +     i16 free_count;

What is i16? ...not a valid type as far as I can see.  Did you compile this?

The codebase you are based on has changed.  There is no longer a file
called mc-private.h.  Latest should be in Greg's staging-next branch.

Stuart


_______________________________________________
devel mailing list
[email protected]
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Reply via email to