Re: [PATCH 12/17] skge: no need to check return value of debugfs_create functions

2019-08-06 Thread Stephen Hemminger
On Tue, 6 Aug 2019 18:11:23 +0200 Greg Kroah-Hartman wrote: > When calling debugfs functions, there is no need to ever check the > return value. The function can work or not, but the code logic should > never do something different based on this. > > Cc: Mirko Lindner > Cc: Stephen Hemminger

[PATCH 12/17] skge: no need to check return value of debugfs_create functions

2019-08-06 Thread Greg Kroah-Hartman
When calling debugfs functions, there is no need to ever check the return value. The function can work or not, but the code logic should never do something different based on this. Cc: Mirko Lindner Cc: Stephen Hemminger Cc: "David S. Miller" Cc: netdev@vger.kernel.org Signed-off-by: Greg Kroa