Skip to content
  • Roland Dreier's avatar
    mlx4_core: Fix confusion between mlx4_event and mlx4_dev_event enums · 37608eea
    Roland Dreier authored
    
    
    The struct mlx4_interface.event() method was supposed to get an enum
    mlx4_dev_event, but the driver code was actually passing in the
    hardware enum mlx4_event values.  Fix up the callers of
    mlx4_dispatch_event() so that they pass in the right type of value,
    and fix up the event method in mlx4_ib so that it can handle the enum
    mlx4_dev_event values.
    
    This eliminates the need for the subtype parameter to the event
    method, so remove it.
    
    This also fixes the sparse warning
    
        drivers/net/mlx4/intf.c:127:48: warning: mixing different enum types
        drivers/net/mlx4/intf.c:127:48:     int enum mlx4_event  versus
        drivers/net/mlx4/intf.c:127:48:     int enum mlx4_dev_event
    
    Signed-off-by: default avatarRoland Dreier <rolandd@cisco.com>
    37608eea