dell-smbios: implement new function for finding DMI table 0xDA tokens
authorMichał Kępień <kernel@kempniu.pl>
Fri, 22 Jan 2016 14:27:22 +0000 (15:27 +0100)
committerDarren Hart <dvhart@linux.intel.com>
Wed, 23 Mar 2016 17:05:41 +0000 (10:05 -0700)
Ultimately, the da_tokens table should not be exported from dell-smbios.
Currently, in some cases, dell-laptop accesses that table's members
directly, so implement a new function, dell_smbios_find_token(), which
returns a pointer to an entry inside the da_tokens table with the given
token ID (or NULL if it is not found).

Signed-off-by: Michał Kępień <kernel@kempniu.pl>
Reviewed-by: Pali Rohár <pali.rohar@gmail.com>
Signed-off-by: Darren Hart <dvhart@linux.intel.com>
drivers/platform/x86/dell-smbios.c
drivers/platform/x86/dell-smbios.h

index 2577cf6aff0f8b50a711c57a212da570ba04790d..6a27e4c85a248187dbeff640a1b90bf47cffaa4a 100644 (file)
@@ -77,6 +77,19 @@ void dell_smbios_send_request(int class, int select)
 }
 EXPORT_SYMBOL_GPL(dell_smbios_send_request);
 
+struct calling_interface_token *dell_smbios_find_token(int tokenid)
+{
+       int i;
+
+       for (i = 0; i < da_num_tokens; i++) {
+               if (da_tokens[i].tokenID == tokenid)
+                       return &da_tokens[i];
+       }
+
+       return NULL;
+}
+EXPORT_SYMBOL_GPL(dell_smbios_find_token);
+
 int find_token_id(int tokenid)
 {
        int i;
index af653ff29b6851801ff311b897d2ba6ca36a11ec..6f6dbe8b05d4ac2b00988a6105c332cd773a217d 100644 (file)
@@ -42,6 +42,8 @@ void dell_smbios_clear_buffer(void);
 void dell_smbios_release_buffer(void);
 void dell_smbios_send_request(int class, int select);
 
+struct calling_interface_token *dell_smbios_find_token(int tokenid);
+
 int find_token_id(int tokenid);
 int find_token_location(int tokenid);
 #endif