This should include the real name like in your Signed-off-by tag.
You can fix this by reconfiguring git and recommitting your patches
Is there a reason for splitting the code into two files? If we would
merge hwsampler-main.c and smpctl.c we could make a lot functions
static which simplifies the interface. We could also drop the
hwsampler/ directory and put all in drivers/s390/hwsampler.c.
Another thing is, wouldn't all of this better be part of cpu
initialization code? This is not really a driver, it only registers a
cpu notifier. Do you need to build this as module? I leave this
This file should only contain definitions for the public interface.
All structs should be private, defined in something like
drivers/s390/hwsampler.h
or so. All of them are only used in hwsampler-main.c or smpctl.c.
Many functions above are for internal use only, these should be
Have you tried building this as a module. Not really sure, but I think it should be
hwsampler-$(CONFIG_HWSAMPLER) := ...
See also my statement above about putting this to cpu init code
instead of having a driver for it.
--
Advanced Micro Devices, Inc.
Operating System Research Center
--