Revision 2bcbf42add911ef63a6d90e92001dc2bcb053e68 authored by Shannon Nelson on 04 November 2020, 19:56:06 UTC, committed by Jakub Kicinski on 05 November 2020, 17:58:25 UTC
Check for corner case of port_init failure before using
the port_info pointer.

Fixes: 4d03e00a2140 ("ionic: Add initial ethtool support")
Signed-off-by: Shannon Nelson <snelson@pensando.io>
Link: https://lore.kernel.org/r/20201104195606.61184-1-snelson@pensando.io
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
1 parent 2aaf09a
Raw File
Makefile
# SPDX-License-Identifier: GPL-2.0
# Makefile for debugging tools

PREFIX ?= /usr
BINDIR ?= bin
INSTALL ?= install

TARGET = kernel-chktaint

all: $(TARGET)

clean:

install: kernel-chktaint
	$(INSTALL) -D -m 755 $(TARGET) $(DESTDIR)$(PREFIX)/$(BINDIR)/$(TARGET)

back to top