Selaa lähdekoodia

input: Add a device pointer to the input config

The read_keys() method in input is passed a struct input_config. Add a
device pointer there so that we can find out the device that is referred
to with driver model.

Once all drivers are converted we can update the input structure to use
driver model instead.

Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Simon Glass 9 vuotta sitten
vanhempi
commit
c9cac4cdce
1 muutettua tiedostoa jossa 1 lisäystä ja 0 poistoa
  1. 1 0
      include/input.h

+ 1 - 0
include/input.h

@@ -36,6 +36,7 @@ struct input_key_xlate {
 };
 };
 
 
 struct input_config {
 struct input_config {
+	struct udevice *dev;
 	uchar fifo[INPUT_BUFFER_LEN];
 	uchar fifo[INPUT_BUFFER_LEN];
 	int fifo_in, fifo_out;
 	int fifo_in, fifo_out;