diff options
author | Simon Glass <sjg@chromium.org> | 2017-06-14 21:28:32 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2017-07-11 10:08:19 -0600 |
commit | 2c9f9efb3d43568e5e5843c600e8bfc2d42ac23e (patch) | |
tree | 2481c6763c62a2b6119e2b1c3698d36b78200208 /board/highbank | |
parent | 1dc64f6c00e89f11e3615403459207405ab0efda (diff) | |
download | u-boot-2c9f9efb3d43568e5e5843c600e8bfc2d42ac23e.tar.gz |
dm: ahci: Rename struct ahci_probe_ent
This is not a very useful name since once it is probed it still hangs
around. With driver model we will use uclass data for this, so rename the
struct.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'board/highbank')
-rw-r--r-- | board/highbank/ahci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/highbank/ahci.c b/board/highbank/ahci.c index 1578a33fd1..dadfbdd315 100644 --- a/board/highbank/ahci.c +++ b/board/highbank/ahci.c @@ -172,7 +172,7 @@ static void cphy_override_lane(u8 port) #define WAIT_MS_LINKUP 4 -int ahci_link_up(struct ahci_probe_ent *probe_ent, int port) +int ahci_link_up(struct ahci_uc_priv *probe_ent, int port) { u32 tmp; int j = 0; |