Remove stray '*'

We're storing an EFI_HANDLE, not an pointer to a handle. Since
EFI_HANDLE is a void * anyway, this has little practical effect since
the conversion to / from void * and void ** is silent.
This commit is contained in:
Warner Losh 2019-05-03 21:06:34 +00:00
parent 5c95417dad
commit aacd73b871
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=347059

View file

@ -48,7 +48,7 @@ typedef struct dev_info
{
EFI_BLOCK_IO *dev;
EFI_DEVICE_PATH *devpath;
EFI_HANDLE *devhandle;
EFI_HANDLE devhandle;
void *devdata;
uint64_t partoff;
int preferred;