Commit 5d06f72d authored by Souptick Joarder's avatar Souptick Joarder Committed by Dmitry Torokhov

Input: ariel-pwrbutton - remove unused variable ariel_pwrbutton_id_table

Kernel test robot throws below warning ->

>> drivers/input/misc/ariel-pwrbutton.c:152:35: warning: unused variable
>> 'ariel_pwrbutton_id_table' [-Wunused-const-variable]
   static const struct spi_device_id ariel_pwrbutton_id_table[] = {
                                     ^
   1 warning generated.

Remove unused variable ariel_pwrbutton_id_table[] if no plan to use
it further.
Reported-by: default avatarkernel test robot <lkp@intel.com>
Signed-off-by: default avatarSouptick Joarder <jrdr.linux@gmail.com>
Reviewed-by: default avatarLubomir Rintel <lkundrak@v3.sk>
Link: https://lore.kernel.org/r/1608581041-4354-1-git-send-email-jrdr.linux@gmail.comSigned-off-by: default avatarDmitry Torokhov <dmitry.torokhov@gmail.com>
parent 2dce6db7
...@@ -149,12 +149,6 @@ static const struct of_device_id ariel_pwrbutton_of_match[] = { ...@@ -149,12 +149,6 @@ static const struct of_device_id ariel_pwrbutton_of_match[] = {
}; };
MODULE_DEVICE_TABLE(of, ariel_pwrbutton_of_match); MODULE_DEVICE_TABLE(of, ariel_pwrbutton_of_match);
static const struct spi_device_id ariel_pwrbutton_id_table[] = {
{ "wyse-ariel-ec-input", 0 },
{}
};
MODULE_DEVICE_TABLE(spi, ariel_pwrbutton_id_table);
static struct spi_driver ariel_pwrbutton_driver = { static struct spi_driver ariel_pwrbutton_driver = {
.driver = { .driver = {
.name = "dell-wyse-ariel-ec-input", .name = "dell-wyse-ariel-ec-input",
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment